stanfordnlp/imdb
Viewer • Updated • 100k • 174k • 394
How to use armpln/clasificador-imdb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="armpln/clasificador-imdb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("armpln/clasificador-imdb")
model = AutoModelForSequenceClassification.from_pretrained("armpln/clasificador-imdb", device_map="auto")This model is a fine-tuned version of answerdotai/ModernBERT-base on an unknown dataset. It achieves the following results on the evaluation set:
This model was fine-tuned for binary text classification, specifically sentiment analysys of movie reviews. The goal of the model is to classify input into two categories:
The base architecture used is ModernBERT-base, which was adapted through supervised fine-tuning on a subset of the IMDB dataset.
This model can be used for:
Limitations:
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| No log | 1.0 | 100 | 0.6079 | 0.845 |
| No log | 2.0 | 200 | 0.4541 | 0.875 |
| No log | 3.0 | 300 | 0.6040 | 0.875 |
Base model
answerdotai/ModernBERT-base