eriktks/conll2003
Updated • 39.8k • 166
How to use ArBert/roberta-base-finetuned-ner-kmeans with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ArBert/roberta-base-finetuned-ner-kmeans") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ArBert/roberta-base-finetuned-ner-kmeans")
model = AutoModelForTokenClassification.from_pretrained("ArBert/roberta-base-finetuned-ner-kmeans")This model is a fine-tuned version of ArBert/roberta-base-finetuned-ner 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 |
|---|---|---|---|---|---|---|
| 0.0248 | 1.0 | 878 | 0.0609 | 0.9507 | 0.9561 | 0.9534 |
| 0.0163 | 2.0 | 1756 | 0.0640 | 0.9515 | 0.9578 | 0.9546 |
| 0.0089 | 3.0 | 2634 | 0.0592 | 0.9559 | 0.9615 | 0.9587 |