stanfordnlp/imdb
Viewer • Updated • 100k • 263k • 383
How to use Wakaka/bert-finetuned-imdb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Wakaka/bert-finetuned-imdb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Wakaka/bert-finetuned-imdb")
model = AutoModelForSequenceClassification.from_pretrained("Wakaka/bert-finetuned-imdb")This model is a fine-tuned version of bert-base-cased 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 |
|---|---|---|---|---|
| No log | 1.0 | 125 | 0.4995 | 0.79 |
| No log | 2.0 | 250 | 0.4000 | 0.854 |
| No log | 3.0 | 375 | 0.5591 | 0.866 |