eriktks/conll2003
Updated • 23.3k • 175
How to use ICT2214Team7/RoBERTa_conll_epoch_5 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ICT2214Team7/RoBERTa_conll_epoch_5") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ICT2214Team7/RoBERTa_conll_epoch_5")
model = AutoModelForTokenClassification.from_pretrained("ICT2214Team7/RoBERTa_conll_epoch_5", device_map="auto")This model is a fine-tuned version of distilroberta-base 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.0787 | 1.0 | 1756 | 0.0734 | 0.9024 | 0.9317 | 0.9168 | 0.9819 |
| 0.0389 | 2.0 | 3512 | 0.0706 | 0.9359 | 0.9440 | 0.9399 | 0.9854 |
| 0.023 | 3.0 | 5268 | 0.0632 | 0.9340 | 0.9483 | 0.9411 | 0.9864 |
| 0.0137 | 4.0 | 7024 | 0.0762 | 0.9368 | 0.9534 | 0.9450 | 0.9875 |
| 0.0054 | 5.0 | 8780 | 0.0716 | 0.9370 | 0.9539 | 0.9454 | 0.9873 |
Base model
distilbert/distilroberta-base