stanfordnlp/imdb
Viewer • Updated • 100k • 178k • 370
How to use muhtasham/finetuned-base_small with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="muhtasham/finetuned-base_small") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("muhtasham/finetuned-base_small")
model = AutoModelForSequenceClassification.from_pretrained("muhtasham/finetuned-base_small")This model is a fine-tuned version of google/bert_uncased_L-4_H-512_A-8 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 | Accuracy | F1 |
|---|---|---|---|---|---|
| 0.3459 | 0.64 | 500 | 0.1283 | 0.9505 | 0.9746 |
| 0.2389 | 1.28 | 1000 | 0.1054 | 0.9595 | 0.9793 |
| 0.1927 | 1.92 | 1500 | 0.1447 | 0.9457 | 0.9721 |
| 0.1408 | 2.56 | 2000 | 0.1261 | 0.9594 | 0.9793 |
| 0.1168 | 3.2 | 2500 | 0.3962 | 0.8942 | 0.9441 |