Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
# 繁體中文情緒分類: 負面(0)、正面(1)
|
|
|
|
|
|
|
2 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
3 |
tokenizer = AutoTokenizer.from_pretrained("Cheng-Lung/bert-sentiment")
|
4 |
model = AutoModelForSequenceClassification.from_pretrained("Cheng-Lung/bert-sentiment")
|
|
|
1 |
# 繁體中文情緒分類: 負面(0)、正面(1)
|
2 |
+
|
3 |
+
# 使用範例:
|
4 |
+
|
5 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
6 |
tokenizer = AutoTokenizer.from_pretrained("Cheng-Lung/bert-sentiment")
|
7 |
model = AutoModelForSequenceClassification.from_pretrained("Cheng-Lung/bert-sentiment")
|