eriktks/conll2003
Updated • 39.8k • 166
How to use mariolinml/roberta_large-simple-chunk-conll2003_0819_v0 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mariolinml/roberta_large-simple-chunk-conll2003_0819_v0") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mariolinml/roberta_large-simple-chunk-conll2003_0819_v0")
model = AutoModelForTokenClassification.from_pretrained("mariolinml/roberta_large-simple-chunk-conll2003_0819_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.1794 | 1.0 | 878 | 0.0934 | 0.9264 | 0.9217 | 0.9241 | 0.9725 |
| 0.0837 | 2.0 | 1756 | 0.0859 | 0.9351 | 0.9266 | 0.9308 | 0.9749 |