eriktks/conll2003
Updated • 41.3k • 166
How to use HYM/test_ner-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="HYM/test_ner-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("HYM/test_ner-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("HYM/test_ner-finetuned-ner")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.2385 | 1.0 | 878 | 0.0708 | 0.9140 | 0.9216 | 0.9178 | 0.9808 |
| 0.055 | 2.0 | 1756 | 0.0626 | 0.9209 | 0.9340 | 0.9274 | 0.9828 |
| 0.0309 | 3.0 | 2634 | 0.0623 | 0.9242 | 0.9349 | 0.9295 | 0.9834 |