eriktks/conll2003
Updated • 37.3k • 167
How to use mariolinml/roberta_large-filtered_simple-chunk-conll2003_0907_v1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="mariolinml/roberta_large-filtered_simple-chunk-conll2003_0907_v1") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("mariolinml/roberta_large-filtered_simple-chunk-conll2003_0907_v1")
model = AutoModelForTokenClassification.from_pretrained("mariolinml/roberta_large-filtered_simple-chunk-conll2003_0907_v1")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.2061 | 1.0 | 878 | 0.1237 | 0.9077 | 0.9008 | 0.9042 | 0.9661 |
| 0.0999 | 2.0 | 1756 | 0.1131 | 0.9148 | 0.9079 | 0.9113 | 0.9687 |