rexarski/eli5_category
Updated • 494 • 20
How to use Kanstantsin/bert_eli5_mlm_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="Kanstantsin/bert_eli5_mlm_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("Kanstantsin/bert_eli5_mlm_model")
model = AutoModelForMaskedLM.from_pretrained("Kanstantsin/bert_eli5_mlm_model")This model is a fine-tuned version of google-bert/bert-base-multilingual-cased 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 |
|---|---|---|---|
| 1.928 | 1.0 | 6250 | 1.8705 |
| 1.8327 | 2.0 | 12500 | 1.8090 |
| 1.7824 | 3.0 | 18750 | 1.7564 |
| 1.7428 | 4.0 | 25000 | 1.7247 |
| 1.6979 | 5.0 | 31250 | 1.7204 |
Base model
google-bert/bert-base-multilingual-cased