eriktks/conll2003
Updated • 41.8k • 166
How to use Saugatkafley/distilbert-NER with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Saugatkafley/distilbert-NER") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Saugatkafley/distilbert-NER")
model = AutoModelForTokenClassification.from_pretrained("Saugatkafley/distilbert-NER")This model is a fine-tuned version of distilbert/distilbert-base-uncased on an unknown 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 |
|---|---|---|---|---|---|---|---|
| No log | 0.91 | 200 | 0.0681 | 0.0 | 0.0 | 0.0 | 0.9805 |
| No log | 1.82 | 400 | 0.0599 | 0.0 | 0.0 | 0.0 | 0.9827 |
| 0.1171 | 2.73 | 600 | 0.0641 | 0.0 | 0.0 | 0.0 | 0.9834 |
| 0.1171 | 3.64 | 800 | 0.0652 | 0.0 | 0.0 | 0.0 | 0.9843 |
| 0.0177 | 4.55 | 1000 | 0.0649 | 0.0 | 0.0 | 0.0 | 0.9838 |
Base model
distilbert/distilbert-base-uncased