Sentiment Analysis Model

This model is a fine-tuned version of distilbert-base-uncased on the IMDb dataset for sentiment analysis.

Model Details

Intended Use

The model is designed to classify text into positive or negative sentiment. You can use it for tasks such as:

  • Analyzing product reviews.
  • Social media sentiment analysis.
  • General text classification tasks involving sentiment.

Limitations

  • The model is fine-tuned on the IMDb dataset and may not generalize well to all domains or datasets.
  • It may inherit biases from the IMDb dataset.

Example Usage

from transformers import pipeline

# Load the model
model_pipeline = pipeline("text-classification", model="proc015/sentiment-model")

# Run sentiment analysis
result = model_pipeline("I love this product!")
print(result)
Downloads last month
19
Safetensors
Model size
67M params
Tensor type
F32
·
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.

Model tree for proc015/sentiment-model

Finetuned
(7329)
this model

Dataset used to train proc015/sentiment-model