VIOLET21 commited on
Commit
f8659eb
·
verified ·
1 Parent(s): 3c0dc95

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -10,8 +10,25 @@ language:
10
  base_model: indobenchmark/indobert-base-p1
11
  pipeline_tag: text-classification
12
  ---
 
 
13
  # Sentiment BERT Tweet
14
- A BERT model fine-tuned for tweet sentiment classification.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
 
17
 
 
10
  base_model: indobenchmark/indobert-base-p1
11
  pipeline_tag: text-classification
12
  ---
13
+
14
+
15
  # Sentiment BERT Tweet
16
+
17
+ A BERT model fine-tuned for Indonesian tweet sentiment classification.
18
+ This model classifies tweets into three sentiment categories:
19
+
20
+ - **Positive**
21
+ - **Negative**
22
+ - **Neutral**
23
+
24
+ ## How to Use
25
+
26
+ ```python
27
+ from transformers import pipeline
28
+
29
+ model = pipeline("text-classification", model="VIOLET21/sentiment-bert-tweet")
30
+ result = model("Saya sangat senang hari ini!")
31
+ print(result)
32
 
33
 
34