metadata
language: en
tags:
- text-classification
- sentiment-analysis
license: apache-2.0
pipeline_tag: text-classification
reviews_analysis
A BERT-based model fine-tuned for text classification (e.g., sentiment analysis).
Usage
from transformers import pipeline
classifier = pipeline("text-classification", model="ossama71/reviews_analysis")
result = classifier("This product is amazing!")
print(result)