reviews_analysis / README.md
ossama71's picture
Update README.md
cf57e1a verified
---
language: en
tags:
- text-classification
- sentiment-analysis
license: apache-2.0 # Replace with your license (e.g., mit, cc-by-4.0)
pipeline_tag: text-classification
---
# reviews_analysis
A BERT-based model fine-tuned for **text classification** (e.g., sentiment analysis).
## Usage
```python
from transformers import pipeline
classifier = pipeline("text-classification", model="ossama71/reviews_analysis")
result = classifier("This product is amazing!")
print(result)