Downloads · 30 days
10
6% of all-time downloads
VIOLET21/sentiment-bert-tweet
sentiment-bert-tweet is a text classification model from VIOLET21. Use it when you need a label for a piece of text. It is set up for transformers. The card lists the license as apache-2.0.
A BERT model fine-tuned for Indonesian tweet sentiment classification. This model classifies tweets into three sentiment categories:
Downloads · 30 days
10
6% of all-time downloads
All-time downloads
165
Public
Parameters
124M
498 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors498 MB · 100%
From the Hugging Face model README
A BERT model fine-tuned for Indonesian tweet sentiment classification.
This model classifies tweets into three sentiment categories:
from transformers import pipeline
model = pipeline("text-classification", model="VIOLET21/sentiment-bert-tweet")
result = model("Saya sangat senang hari ini!")
print(result)