Fine-Tuned BERT for IMDB Sentiment Classification

Hugging Face Model

Model Description

This is a fine-tuned version of BERT-Base-Uncased for binary sentiment classification on the IMDB dataset. The model is trained to classify movie reviews as either positive or negative.

Model Details

Usage

Load the Model

from transformers import BertForSequenceClassification, BertTokenizer

model_name = "kparkhade/Fine-tuned-BERT-Imdb"

model = BertForSequenceClassification.from_pretrained(model_name)
tokenizer = BertTokenizer.from_pretrained(model_name)

Inference Example

from transformers import pipeline

sentiment_pipeline = pipeline("text-classification", model=model_name)
result = sentiment_pipeline("The movie was absolutely fantastic! I loved it.")
print(result)

Citation

If you use this model, please cite: @article{devlin2019bert, title={BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding}, author={Devlin, Jacob and Chang, Ming-Wei and Lee, Kenton and Toutanova, Kristina}, journal={arXiv preprint arXiv:1810.04805}, year={2019} }

License

This model is released under the Apache 2.0 License.

Downloads last month
1
Safetensors
Model size
109M params
Tensor type
F32
·
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.

Model tree for kparkhade/Fine-tuned-BERT-Imdb

Finetuned
(3154)
this model

Dataset used to train kparkhade/Fine-tuned-BERT-Imdb