File size: 613 Bytes
8172ab1 33bdf80 e14e546 33bdf80 e14e546 9a8771f 33bdf80 8172ab1 f8659eb 5efc992 f8659eb 8172ab1 9a8771f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | ---
library_name: transformers
tags:
- sentiment-analysis
- bert
- text-classification
license: apache-2.0
language:
- id
base_model: indobenchmark/indobert-base-p1
pipeline_tag: text-classification
---
# Sentiment BERT Tweet
A BERT model fine-tuned for Indonesian tweet sentiment classification.
This model classifies tweets into three sentiment categories:
- **Positive**
- **Negative**
- **Neutral**
## How to Use
```python
from transformers import pipeline
model = pipeline("text-classification", model="VIOLET21/sentiment-bert-tweet")
result = model("Saya sangat senang hari ini!")
print(result)
|