stanfordnlp/imdb
Viewer • Updated • 100k • 178k • 370
How to use rasyosef/bert-mini-domain-adapted-imdb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="rasyosef/bert-mini-domain-adapted-imdb") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("rasyosef/bert-mini-domain-adapted-imdb")
model = AutoModelForMaskedLM.from_pretrained("rasyosef/bert-mini-domain-adapted-imdb")This model is a fine-tuned version of prajjwal1/bert-mini on imdb movie reviews dataset. It achieves the following results on the evaluation set:
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 3.0658 | 1.0 | 782 | 2.8164 |
| 3.0034 | 2.0 | 1564 | 2.7746 |
| 2.9766 | 3.0 | 2346 | 2.7728 |
Base model
prajjwal1/bert-mini