google/xtreme
Viewer • Updated • 2.77M • 22.8k • 116
How to use bousejin/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="bousejin/xlm-roberta-base-finetuned-panx-en") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("bousejin/xlm-roberta-base-finetuned-panx-en")
model = AutoModelForTokenClassification.from_pretrained("bousejin/xlm-roberta-base-finetuned-panx-en")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.1446 | 1.0 | 50 | 0.6385 | 0.3858 |
| 0.5317 | 2.0 | 100 | 0.4248 | 0.6626 |
| 0.3614 | 3.0 | 150 | 0.3909 | 0.6901 |