stanfordnlp/imdb
Viewer • Updated • 100k • 263k • 382
How to use ShayDuane/distilbert-base-uncased-finetuned-imdb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="ShayDuane/distilbert-base-uncased-finetuned-imdb") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("ShayDuane/distilbert-base-uncased-finetuned-imdb")
model = AutoModel.from_pretrained("ShayDuane/distilbert-base-uncased-finetuned-imdb")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.5803 | 1.0 | 1250 | 2.5043 |
| 2.4534 | 2.0 | 2500 | 2.4634 |
| 2.4564 | 3.0 | 3750 | 2.4336 |