stanfordnlp/imdb
Viewer • Updated • 100k • 177k • 472
This model is a fine-tuned version of distilbert-base-uncased on the IMDB movie reviews dataset. It achieves an accuracy of 100.0% on the test set.
This is a sentiment analysis model specifically trained on movie reviews. It can classify text as either positive or negative sentiment.
Intended Uses:
Limitations:
The model was fine-tuned on the IMDB movie reviews dataset:
| Metric | Value |
|---|---|
| Accuracy | 1.0000 |
from transformers import pipeline
# Load the model
classifier = pipeline("text-classification", model="Mallikarjunareddy/malli_finetuned_model")
# Classify text
result = classifier("This movie was absolutely amazing!")
print(result)
# Output: [{'label': 'LABEL_1', 'score': 0.9998}]
# LABEL_0 = Negative, LABEL_1 = Positive
The model shows strong performance on movie review sentiment analysis:
@misc{malli_finetuned_model_2024,
author = {Your Name},
title = {malli_finetuned_model: Fine-tuned IMDB Sentiment Analysis},
year = {2024},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/Mallikarjunareddy/malli_finetuned_model}}
}
Base model
distilbert/distilbert-base-uncased