Views
No views yet
dbmdz/bert-base-turkish-cased (BERTurk) for sentiment classification of Turkish text. Given a Turkish sentence, it predicts whether the sentiment is Positive, Negative, or Notr (neutral).| Metric | Score |
|---|---|
| Accuracy | 0.9669 |
| Macro F1 | 0.9414 |
1from transformers import pipeline
2
3clf = pipeline("text-classification", model="Omar1010/bert-turkish-sentiment")
4print(clf("Bu ürün gerçekten harika, çok memnun kaldım."))Positive — olumluNegative — olumsuzNotr — nötr / neutraldbmdz/bert-base-turkish-cased)