eriktks/conll2003
Updated • 23.3k • 175
How to use ICT2214Team7/RoBERTa_conll_epoch_4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ICT2214Team7/RoBERTa_conll_epoch_4") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ICT2214Team7/RoBERTa_conll_epoch_4")
model = AutoModelForTokenClassification.from_pretrained("ICT2214Team7/RoBERTa_conll_epoch_4", 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.0785 | 1.0 | 1756 | 0.0667 | 0.9131 | 0.9335 | 0.9232 | 0.9835 |
| 0.0379 | 2.0 | 3512 | 0.0619 | 0.9341 | 0.9445 | 0.9392 | 0.9864 |
| 0.0207 | 3.0 | 5268 | 0.0609 | 0.9424 | 0.9529 | 0.9476 | 0.9872 |
| 0.0105 | 4.0 | 7024 | 0.0595 | 0.9446 | 0.9586 | 0.9516 | 0.9885 |
Base model
distilbert/distilroberta-base