eriktks/conll2003
Updated • 41.1k • 166
How to use alphaduriendur/ner-deBERTa-v3-large-conll2003 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="alphaduriendur/ner-deBERTa-v3-large-conll2003") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("alphaduriendur/ner-deBERTa-v3-large-conll2003")
model = AutoModelForTokenClassification.from_pretrained("alphaduriendur/ner-deBERTa-v3-large-conll2003")This model is a fine-tuned version of microsoft/deberta-v3-large 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.0077 | 1.0 | 878 | 0.1280 | 0.9096 | 0.9265 | 0.9180 | 0.9832 |
| 0.0084 | 2.0 | 1756 | 0.1380 | 0.9167 | 0.9299 | 0.9233 | 0.9844 |
| 0.0037 | 3.0 | 2634 | 0.1495 | 0.9221 | 0.9347 | 0.9283 | 0.9850 |
| 0.0015 | 4.0 | 3512 | 0.1517 | 0.9215 | 0.9347 | 0.9280 | 0.9849 |
| 0.0006 | 5.0 | 4390 | 0.1546 | 0.9235 | 0.9363 | 0.9298 | 0.9853 |