stanfordnlp/imdb
Viewer • Updated • 100k • 171k • 390
How to use barto17/output with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="barto17/output") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("barto17/output")
model = AutoModelForSequenceClassification.from_pretrained("barto17/output")This model is a fine-tuned version of DistilBertForSequenceClassification 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.4041 | 1.0 | 625 | 0.2722 |
| 0.2358 | 2.0 | 1250 | 0.3961 |
| 0.1243 | 3.0 | 1875 | 0.4994 |