stanfordnlp/imdb
Viewer • Updated • 100k • 174k • 472
How to use sbulut/distilbert-base-uncased with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="sbulut/distilbert-base-uncased") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("sbulut/distilbert-base-uncased")
model = AutoModelForSequenceClassification.from_pretrained("sbulut/distilbert-base-uncased", device_map="auto")This model was trained from scratch on an unknown 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 | Accuracy |
|---|---|---|---|---|
| 0.2256 | 1.0 | 1563 | 0.2599 | 0.9039 |
| 0.1528 | 2.0 | 3126 | 0.2250 | 0.9322 |