google/xtreme
Viewer • Updated • 2.77M • 5.42k • 116
How to use songys/xlm-roberta-base-finetuned-panx-en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="songys/xlm-roberta-base-finetuned-panx-en") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("songys/xlm-roberta-base-finetuned-panx-en")
model = AutoModelForTokenClassification.from_pretrained("songys/xlm-roberta-base-finetuned-panx-en", device_map="auto")This model is a fine-tuned version of xlm-roberta-base on the xtreme 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 | F1 |
|---|---|---|---|---|
| 1.2644 | 1.0 | 37 | 0.6835 | 0.4593 |
| 0.591 | 2.0 | 74 | 0.4519 | 0.64 |
| 0.414 | 3.0 | 111 | 0.3931 | 0.6883 |