eriktks/conll2003
Updated • 24k • 174
How to use ICT2214Team7/RoBERTa_Test_Training with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ICT2214Team7/RoBERTa_Test_Training") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ICT2214Team7/RoBERTa_Test_Training")
model = AutoModelForTokenClassification.from_pretrained("ICT2214Team7/RoBERTa_Test_Training", 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.0803 | 1.0 | 1756 | 0.0725 | 0.9236 | 0.9313 | 0.9274 | 0.9820 |
| 0.0373 | 2.0 | 3512 | 0.0627 | 0.9453 | 0.9487 | 0.9470 | 0.9868 |
| 0.0213 | 3.0 | 5268 | 0.0590 | 0.9508 | 0.9550 | 0.9529 | 0.9880 |