rexarski/eli5_category
Updated • 555 • 18
How to use YaBoyBigPat/roberta_trained_mlm with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="YaBoyBigPat/roberta_trained_mlm") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("YaBoyBigPat/roberta_trained_mlm")
model = AutoModelForMaskedLM.from_pretrained("YaBoyBigPat/roberta_trained_mlm")This model is a fine-tuned version of distilroberta-base on the eli5_category 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 |
|---|---|---|---|
| 2.2537 | 1.0 | 1301 | 2.0757 |
| 2.1785 | 2.0 | 2602 | 2.0432 |
| 2.1132 | 3.0 | 3903 | 2.0442 |
Base model
distilbert/distilroberta-base