Zeyustun commited on
Commit
f8c42eb
·
verified ·
1 Parent(s): d7fcf0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -7
README.md CHANGED
@@ -1,13 +1,29 @@
1
- # Turkish Sentiment Analysis Dataset
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- This dataset contains 30 Turkish sentences labeled with sentiment: `positive`, `negative`, or `neutral`.
4
 
5
- ## Format
6
 
7
- - `text`: Sentence in Turkish
8
- - `label`: Sentiment class (positive / negative / neutral)
9
 
10
- ## License
 
11
 
12
- license: apache-2.0
 
 
 
13
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - manual
4
+ language:
5
+ - tr
6
+ license: apache-2.0
7
+ multilinguality: monolingual
8
+ pretty_name: Turkish Sentiment Dataset
9
+ task_categories:
10
+ - text-classification
11
+ task_ids:
12
+ - sentiment-classification
13
+ ---
14
 
15
+ # Turkish Sentiment Dataset 🇹🇷
16
 
17
+ This dataset includes 30 Turkish sentences labeled with 3 sentiment classes: `positive`, `negative`, and `neutral`.
18
 
19
+ ## Features
 
20
 
21
+ - `text` (string): the sentence
22
+ - `label` (class): one of `positive`, `negative`, `neutral`
23
 
24
+ ## Usage
25
+
26
+ ```python
27
+ from datasets import load_dataset
28
 
29
+ dataset = load_dataset("Zeyustun/turkish-sentiment-dataset")