winvoker/turkish-sentiment-analysis-dataset
Viewer • Updated • 490k • 362 • 47
A fine-tuned version of 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).
Evaluated on the held-out test split of the winvoker/turkish-sentiment-analysis-dataset:
| Metric | Score |
|---|---|
| Accuracy | 0.9669 |
| Macro F1 | 0.9414 |
from transformers import pipeline
clf = pipeline("text-classification", model="Omar1010/bert-turkish-sentiment")
print(clf("Bu ürün gerçekten harika, çok memnun kaldım."))
Positive — olumluNegative — olumsuzNotr — nötr / neutraldbmdz/bert-base-turkish-cased)Trained mainly on product-review-style Turkish text, so it performs best on similar language. It may be less reliable on sarcasm, very informal slang, or highly domain-specific text.
Base model
dbmdz/bert-base-turkish-cased