google/xtreme
Viewer • Updated • 2.77M • 27.1k • 116
How to use rootacess/xlm-roberta-base-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="rootacess/xlm-roberta-base-finetuned") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("rootacess/xlm-roberta-base-finetuned")
model = AutoModelForTokenClassification.from_pretrained("rootacess/xlm-roberta-base-finetuned")# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("rootacess/xlm-roberta-base-finetuned")
model = AutoModelForTokenClassification.from_pretrained("rootacess/xlm-roberta-base-finetuned")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 |
|---|---|---|---|---|
| 0.2591 | 1.0 | 525 | 0.1621 | 0.8206 |
| 0.1276 | 2.0 | 1050 | 0.1379 | 0.8486 |
| 0.082 | 3.0 | 1575 | 0.1358 | 0.8638 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="rootacess/xlm-roberta-base-finetuned")