eriktks/conll2003
Updated • 25k • 174
How to use ICT2214Team7/RoBERTa_conll_learning_rate7e5 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ICT2214Team7/RoBERTa_conll_learning_rate7e5") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ICT2214Team7/RoBERTa_conll_learning_rate7e5")
model = AutoModelForTokenClassification.from_pretrained("ICT2214Team7/RoBERTa_conll_learning_rate7e5", 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.0822 | 1.0 | 1756 | 0.0665 | 0.9087 | 0.9349 | 0.9216 | 0.9821 |
| 0.0329 | 2.0 | 3512 | 0.0644 | 0.9340 | 0.9429 | 0.9384 | 0.9860 |
| 0.0205 | 3.0 | 5268 | 0.0592 | 0.9373 | 0.9515 | 0.9444 | 0.9872 |
Base model
distilbert/distilroberta-base