πŸ“˜ BERT Sentiment Analysis Model (Fine-Tuned on IMDB)

This model is a fine-tuned version of google-bert/bert-base-uncased, trained on the IMDB movie reviews dataset for binary sentiment classification.

It predicts whether text expresses negative or positive sentiment.

This model is hosted by @ManavDhayeCoder.


πŸš€ Model Overview

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

The model has two classes:

  • LABEL_0 β†’ negative
  • LABEL_1 β†’ positive

πŸ”₯ Quick Usage Example

from transformers import pipeline

clf = pipeline("text-classification", model="ManavDhayeCoder/sentiment-bert")

print(clf("This movie was amazing!"))
Downloads last month
33
Safetensors
Model size
0.1B params
Tensor type
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for ManavDhayeCoder/sentiment-bert

Finetuned
(6192)
this model

Dataset used to train ManavDhayeCoder/sentiment-bert