stanfordnlp/imdb
Viewer • Updated • 100k • 276k • 378
How to use bthomas/tuto-distilbert-base-uncased-mlm with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="bthomas/tuto-distilbert-base-uncased-mlm") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("bthomas/tuto-distilbert-base-uncased-mlm")
model = AutoModelForMaskedLM.from_pretrained("bthomas/tuto-distilbert-base-uncased-mlm")This model is a fine-tuned version of distilbert-base-uncased on the imdb 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 |
|---|---|---|---|
| 0.8087 | 1.0 | 157 | 0.7144 |
| 0.7182 | 2.0 | 314 | 0.6918 |
| 0.7041 | 3.0 | 471 | 0.6918 |