eriktks/conll2003
Updated • 30.4k • 170
How to use sarasarasara/sara-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="sarasarasara/sara-model") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("sarasarasara/sara-model")
model = AutoModelForTokenClassification.from_pretrained("sarasarasara/sara-model")This model is a fine-tuned version of distilbert-base-uncased on the conll2003 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.2399 | 1.0 | 878 | 0.0694 | 0.9126 | 0.9179 | 0.9152 | 0.9807 |
| 0.0522 | 2.0 | 1756 | 0.0604 | 0.9207 | 0.9342 | 0.9274 | 0.9833 |
| 0.0308 | 3.0 | 2634 | 0.0614 | 0.9288 | 0.9374 | 0.9331 | 0.9840 |