eriktks/conll2003
Updated • 38.6k • 166
How to use mo7amed3ly/distilbert-base-uncased-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mo7amed3ly/distilbert-base-uncased-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mo7amed3ly/distilbert-base-uncased-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("mo7amed3ly/distilbert-base-uncased-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.2483 | 1.0 | 878 | 0.0696 | 0.9143 | 0.9211 | 0.9177 | 0.9807 |
| 0.0504 | 2.0 | 1756 | 0.0593 | 0.9206 | 0.9347 | 0.9276 | 0.9832 |
| 0.0301 | 3.0 | 2634 | 0.0590 | 0.9270 | 0.9399 | 0.9334 | 0.9844 |