eriktks/conll2003
Updated • 33.8k • 169
How to use yajatpawar/deberta-v3-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="yajatpawar/deberta-v3-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("yajatpawar/deberta-v3-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("yajatpawar/deberta-v3-finetuned-ner")This model is a fine-tuned version of microsoft/deberta-v3-small 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.0152 | 1.0 | 878 | 0.1512 | 0.9313 | 0.9421 | 0.9367 | 0.9884 |
| 0.0277 | 2.0 | 1756 | 0.1451 | 0.9466 | 0.9509 | 0.9487 | 0.9902 |
| 0.0151 | 3.0 | 2634 | 0.1204 | 0.9484 | 0.9579 | 0.9531 | 0.9912 |
| 0.0063 | 4.0 | 3512 | 0.1419 | 0.9476 | 0.9564 | 0.9520 | 0.9912 |
| 0.0038 | 5.0 | 4390 | 0.1321 | 0.9497 | 0.9591 | 0.9544 | 0.9917 |
Base model
microsoft/deberta-v3-small