eriktks/conll2003
Updated • 25k • 175
How to use ICT2214Team7/RoBERTa_conll_learning_rate1e4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ICT2214Team7/RoBERTa_conll_learning_rate1e4") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ICT2214Team7/RoBERTa_conll_learning_rate1e4")
model = AutoModelForTokenClassification.from_pretrained("ICT2214Team7/RoBERTa_conll_learning_rate1e4", 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.0909 | 1.0 | 1756 | 0.0778 | 0.8810 | 0.9130 | 0.8967 | 0.9786 |
| 0.0413 | 2.0 | 3512 | 0.0720 | 0.9242 | 0.9337 | 0.9289 | 0.9838 |
| 0.0194 | 3.0 | 5268 | 0.0665 | 0.9345 | 0.9463 | 0.9404 | 0.9863 |
Base model
distilbert/distilroberta-base