Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
sentiment-classification
Languages:
Turkish
Size:
100K - 1M
License:
Update files from the datasets library (from 1.9.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.9.0
- README.md +12 -3
- turkish_product_reviews.py +1 -1
README.md
CHANGED
@@ -18,6 +18,7 @@ task_categories:
|
|
18 |
task_ids:
|
19 |
- sentiment-classification
|
20 |
paperswithcode_id: null
|
|
|
21 |
---
|
22 |
|
23 |
# Dataset Card for Turkish Product Reviews
|
@@ -55,6 +56,10 @@ paperswithcode_id: null
|
|
55 |
|
56 |
This Turkish Product Reviews Dataset contains 235.165 product reviews collected online. There are 220.284 positive, 14881 negative reviews.
|
57 |
|
|
|
|
|
|
|
|
|
58 |
### Languages
|
59 |
|
60 |
The dataset is based on Turkish.
|
@@ -121,7 +126,11 @@ The dataset does not contain any additional annotations.
|
|
121 |
|
122 |
## Considerations for Using the Data
|
123 |
|
124 |
-
###
|
|
|
|
|
|
|
|
|
125 |
|
126 |
[More Information Needed]
|
127 |
|
@@ -141,8 +150,8 @@ The data is under the [CC-BY-SA-4.0 License](https://github.com/fthbrmnby/turkis
|
|
141 |
|
142 |
### Citation Information
|
143 |
|
144 |
-
|
145 |
|
146 |
### Contributions
|
147 |
|
148 |
-
Thanks to [@basakbuluz](https://github.com/basakbuluz) for adding this dataset.
|
|
|
18 |
task_ids:
|
19 |
- sentiment-classification
|
20 |
paperswithcode_id: null
|
21 |
+
pretty_name: Turkish Product Reviews
|
22 |
---
|
23 |
|
24 |
# Dataset Card for Turkish Product Reviews
|
|
|
56 |
|
57 |
This Turkish Product Reviews Dataset contains 235.165 product reviews collected online. There are 220.284 positive, 14881 negative reviews.
|
58 |
|
59 |
+
### Supported Tasks and Leaderboards
|
60 |
+
|
61 |
+
[More Information Needed]
|
62 |
+
|
63 |
### Languages
|
64 |
|
65 |
The dataset is based on Turkish.
|
|
|
126 |
|
127 |
## Considerations for Using the Data
|
128 |
|
129 |
+
### Social Impact of Dataset
|
130 |
+
|
131 |
+
[More Information Needed]
|
132 |
+
|
133 |
+
### Discussion of Biases
|
134 |
|
135 |
[More Information Needed]
|
136 |
|
|
|
150 |
|
151 |
### Citation Information
|
152 |
|
153 |
+
No citation available for this dataset.
|
154 |
|
155 |
### Contributions
|
156 |
|
157 |
+
Thanks to [@basakbuluz](https://github.com/basakbuluz) for adding this dataset.
|
turkish_product_reviews.py
CHANGED
@@ -55,7 +55,7 @@ class TurkishProductReviews(datasets.GeneratorBasedBuilder):
|
|
55 |
logger.info("⏳ Generating examples from = %s", filepath)
|
56 |
for file_idx, f in enumerate(sorted(filenames)):
|
57 |
filename, file_extension = os.path.splitext(f)
|
58 |
-
label = "negative" if file_extension == "neg" else "positive"
|
59 |
|
60 |
file_fullpath = os.path.join(filepath, f)
|
61 |
with open(file_fullpath, encoding="utf-8") as f:
|
|
|
55 |
logger.info("⏳ Generating examples from = %s", filepath)
|
56 |
for file_idx, f in enumerate(sorted(filenames)):
|
57 |
filename, file_extension = os.path.splitext(f)
|
58 |
+
label = "negative" if file_extension == ".neg" else "positive"
|
59 |
|
60 |
file_fullpath = os.path.join(filepath, f)
|
61 |
with open(file_fullpath, encoding="utf-8") as f:
|