eriktks/conll2003
Updated • 39.8k • 166
How to use mariolinml/roberta_large-ner-conll2003_0818_v0 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mariolinml/roberta_large-ner-conll2003_0818_v0") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mariolinml/roberta_large-ner-conll2003_0818_v0")
model = AutoModelForTokenClassification.from_pretrained("mariolinml/roberta_large-ner-conll2003_0818_v0")This model is a fine-tuned version of roberta-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.0273 | 1.0 | 878 | 0.0500 | 0.9338 | 0.9588 | 0.9461 | 0.9894 |
| 0.0154 | 2.0 | 1756 | 0.0479 | 0.9402 | 0.9660 | 0.9529 | 0.9904 |