Instructions to use iulusoy/test-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iulusoy/test-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="iulusoy/test-model")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("iulusoy/test-model") model = AutoModelForTokenClassification.from_pretrained("iulusoy/test-model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1 +1,10 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
datasets:
|
| 2 |
+
- iulusoy/test-data-3
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
license: MIT
|
| 6 |
+
metrics:
|
| 7 |
+
- seqeval
|
| 8 |
+
tags:
|
| 9 |
+
- token-classification
|
| 10 |
+
thumbnail: None
|