Views
No views yet
| Property | Value |
|---|---|
| Base model | google-bert/bert-base-uncased |
| Task | Sentiment Analysis (Sequence Classification) |
| Labels | negative / positive |
| Dataset | IMDB |
| Library | Hugging Face Transformers |
| Format | model.safetensors |
LABEL_0 → negativeLABEL_1 → positive1from transformers import pipeline
2
3clf = pipeline("text-classification", model="ManavDhayeCoder/sentiment-bert")
4
5print(clf("This movie was amazing!"))