google/xtreme
Viewer • Updated • 2.77M • 4.97k • 116
How to use 54data/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="54data/xlm-roberta-base-finetuned-panx-en", device_map="auto") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("54data/xlm-roberta-base-finetuned-panx-en")
model = AutoModelForTokenClassification.from_pretrained("54data/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.1388 | 1.0 | 50 | 0.6031 | 0.5276 |
| 0.5186 | 2.0 | 100 | 0.4223 | 0.6756 |
| 0.3501 | 3.0 | 150 | 0.3834 | 0.7195 |
Base model
FacebookAI/xlm-roberta-base