Simple Sentiment Analyzer

๐Ÿš€ This is a sentiment analysis model trained to classify text as Positive or Negative.

Model Details

  • Architecture: DistilBERT (fine-tuned for sentiment classification)
  • Framework: ๐Ÿค— Transformers
  • Files included:
    • config.json
    • model.safetensors
    • tokenizer.json
    • tokenizer_config.json
    • special_tokens_map.json
    • vocab.txt

Usage

from transformers import pipeline

classifier = pipeline("sentiment-analysis", model="Rugs25/simple-sentiment-analyzer")

print(classifier("I love Hugging Face!"))  # โ†’ POSITIVE
print(classifier("This is terrible."))     # โ†’ NEGATIVE
Downloads last month
1
Safetensors
Model size
67M params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Dataset used to train Rugs25/simple-sentiment-analyzer