eriktks/conll2003
Updated • 23k • 175
How to use mariolinml/roberta_large-unbalanced_simple-ner-conll2003_0908_v0 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mariolinml/roberta_large-unbalanced_simple-ner-conll2003_0908_v0") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mariolinml/roberta_large-unbalanced_simple-ner-conll2003_0908_v0")
model = AutoModelForTokenClassification.from_pretrained("mariolinml/roberta_large-unbalanced_simple-ner-conll2003_0908_v0", device_map="auto")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.07 | 1.0 | 878 | 0.0249 | 0.9616 | 0.9746 | 0.9681 | 0.9936 |
| 0.0176 | 2.0 | 1756 | 0.0241 | 0.9699 | 0.9818 | 0.9758 | 0.9948 |