eriktks/conll2003
Updated • 39.8k • 166
How to use mariolinml/roberta_large-chunk-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-chunk-conll2003_0818_v0") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mariolinml/roberta_large-chunk-conll2003_0818_v0")
model = AutoModelForTokenClassification.from_pretrained("mariolinml/roberta_large-chunk-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.2179 | 1.0 | 878 | 0.0527 | 0.9210 | 0.9472 | 0.9339 | 0.9875 |
| 0.0434 | 2.0 | 1756 | 0.0455 | 0.9366 | 0.9616 | 0.9489 | 0.9899 |