generated_from_trainer massive bert

<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. -->

xlm-roberta-base-finetuned-massive

This model is a fine-tuned version of xlm-roberta-base on the massive dataset. It achieves the following results on the evaluation set:

Model description

More information needed

Intended uses & limitations

from transformers import pipeline

model_name = "thkkvui/xlm-roberta-base-finetuned-massive"
classifier = pipeline("text-classification", model=model_name)

text = ["今日の天気を教えて", "ニュースある?", "予定をチェックして", "ドル円は?"]

for t in text:
    output = classifier(t)
    print(output)

Training and evaluation data

More information needed

Training procedure

Training hyperparameters

The following hyperparameters were used during training:

Training results

Training Loss Epoch Step Validation Loss Accuracy F1
2.9836 0.69 500 1.6188 0.6257 0.5524
1.4569 1.39 1000 1.0347 0.7575 0.7251
1.0211 2.08 1500 0.8186 0.8205 0.8024
0.7799 2.78 2000 0.7539 0.8328 0.8192

Framework versions