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") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -7,6 +7,8 @@ license: mit
|
|
| 7 |
metrics:
|
| 8 |
- seqeval
|
| 9 |
tags:
|
| 10 |
-
- token
|
| 11 |
thumbnail: null
|
| 12 |
-
---
|
|
|
|
|
|
|
|
|
| 7 |
metrics:
|
| 8 |
- seqeval
|
| 9 |
tags:
|
| 10 |
+
- token-classification
|
| 11 |
thumbnail: null
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model description
|