This model is fine-tuned on the IMDB movie reviews dataset for sentiment analysis.
Model Details
Base Model: distilbert-base-uncased
Framework: Hugging Face Transformers
Task: Sentiment Analysis
Dataset: IMDB Dataset
Labels
POSITIVE
NEGATIVE
Example Usage
python
1from transformers import pipeline
23classifier = pipeline(4"sentiment-analysis",5 model="NoureEzzA1arab/imdb-distilbert-sentiment"6)78result = classifier("This movie was fantastic and emotional.")9print(result)