eriktks/conll2003
Updated • 24k • 174
How to use ICT2214Team7/RoBERTa_conll_learning_rate4e5 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ICT2214Team7/RoBERTa_conll_learning_rate4e5") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ICT2214Team7/RoBERTa_conll_learning_rate4e5")
model = AutoModelForTokenClassification.from_pretrained("ICT2214Team7/RoBERTa_conll_learning_rate4e5", 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.0753 | 1.0 | 1756 | 0.0656 | 0.9168 | 0.9389 | 0.9277 | 0.9838 |
| 0.0353 | 2.0 | 3512 | 0.0594 | 0.9383 | 0.9490 | 0.9436 | 0.9864 |
| 0.0202 | 3.0 | 5268 | 0.0550 | 0.9435 | 0.9579 | 0.9506 | 0.9886 |
Base model
distilbert/distilroberta-base