stanfordnlp/imdb
Viewer • Updated • 100k • 179k • 394
How to use Leisa/distilbert-base-uncased-finetuned-imdb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="Leisa/distilbert-base-uncased-finetuned-imdb") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("Leisa/distilbert-base-uncased-finetuned-imdb")
model = AutoModelForMaskedLM.from_pretrained("Leisa/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.5561 | 1.0 | 782 | 2.3738 |
| 2.4474 | 2.0 | 1564 | 2.3108 |
| 2.4037 | 3.0 | 2346 | 2.3017 |