eriktks/conll2003
Updated • 41.5k • 166
How to use Gladiator/microsoft-deberta-v3-large_ner_conll2003 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Gladiator/microsoft-deberta-v3-large_ner_conll2003") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Gladiator/microsoft-deberta-v3-large_ner_conll2003")
model = AutoModelForTokenClassification.from_pretrained("Gladiator/microsoft-deberta-v3-large_ner_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.0986 | 1.0 | 878 | 0.0323 | 0.9453 | 0.9596 | 0.9524 | 0.9921 |
| 0.0212 | 2.0 | 1756 | 0.0270 | 0.9571 | 0.9675 | 0.9623 | 0.9932 |
| 0.009 | 3.0 | 2634 | 0.0280 | 0.9638 | 0.9714 | 0.9676 | 0.9940 |
| 0.0035 | 4.0 | 3512 | 0.0290 | 0.9657 | 0.9712 | 0.9685 | 0.9943 |
| 0.0022 | 5.0 | 4390 | 0.0293 | 0.9667 | 0.9724 | 0.9695 | 0.9945 |