eriktks/conll2003
Updated • 39.3k • 166
How to use sagnikrayc/roberta-base-conll2003-pos with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="sagnikrayc/roberta-base-conll2003-pos") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("sagnikrayc/roberta-base-conll2003-pos")
model = AutoModelForTokenClassification.from_pretrained("sagnikrayc/roberta-base-conll2003-pos")This model is a fine-tuned version of roberta-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.617 | 1.0 | 878 | 0.2189 | 0.9239 | 0.9210 | 0.9225 | 0.9470 |
| 0.1667 | 2.0 | 1756 | 0.1947 | 0.9308 | 0.9300 | 0.9304 | 0.9524 |
Base model
FacebookAI/roberta-base