stanfordnlp/imdb
Viewer • Updated • 100k • 171k • 472
How to use mbateman/distilbert-base-uncased-finetuned-imdb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="mbateman/distilbert-base-uncased-finetuned-imdb") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("mbateman/distilbert-base-uncased-finetuned-imdb")
model = AutoModelForMaskedLM.from_pretrained("mbateman/distilbert-base-uncased-finetuned-imdb", device_map="auto")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 |
|---|---|---|---|
| 2.6482 | 1.0 | 625 | 2.4283 |
| 2.5156 | 2.0 | 1250 | 2.3816 |
| 2.475 | 3.0 | 1875 | 2.3638 |