BayanDuygu commited on
Commit
d876ebb
·
1 Parent(s): e0f874f

added readme

Browse files
Files changed (1) hide show
  1. README.md +78 -1
README.md CHANGED
@@ -1,3 +1,80 @@
1
  ---
2
- license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - tr
4
+ license:
5
+ - cc-by-sa-4.0
6
+ multilinguality:
7
+ - monolingual
8
+ size_categories:
9
+ - 100K<n<1M
10
+ task_categories:
11
+ - text-classification
12
+ task_ids:
13
+ - sentiment-classification
14
+ pretty_name: Vitamins and Supplements Customer Reviews Dataset
15
  ---
16
+
17
+ # Dataset Card for turkish-nlp-suite/vitamins-supplements-reviews
18
+
19
+ <img src="https://raw.githubusercontent.com/turkish-nlp-suite/.github/main/profile/supplements.png" width="20%" height="20%">
20
+
21
+ ### Dataset Description
22
+ - **Repository:** [Vitamins and Supplements Reviews Dataset](https://github.com/turkish-nlp-suite/Vitamins-Supplements-Reviews)
23
+ - **Paper:** [ACL link](https://aclanthology.org/2023.acl-long.768/)
24
+ - **Dataset:** Vitamins and Supplements Reviews Dataset
25
+ - **Domain:** E-commerce, customer reviews
26
+
27
+
28
+ ### Dataset Summary
29
+ Turkish sentiment analysis dataset from customer reviews about supplemen and vitamin products. This dataset is scraped from Vitaminler.com.
30
+ This is a Turkish NLU dataset that contains customer reviews and star rating about vitamin and supplement products.
31
+ The dataset includes 1,052 products of 262 distinct brands with 244K customer reviews. During the compilation, we eliminated reviews containing person names such as customer's name and influencer names
32
+
33
+
34
+ ### Dataset Instances
35
+ Each dataset instance contains
36
+
37
+ - product name
38
+ - brand name
39
+ - customer review text
40
+ - star rating
41
+
42
+ Here's an example for you:
43
+
44
+ ```
45
+ {
46
+ "product_name": "Microfer Şurup 250 ml",
47
+ "brand": "Ocean",
48
+ "review": "Bittikçe alıyorum harika bişey kızım tadını da seviyo",
49
+ "star": 5
50
+ }
51
+ ```
52
+
53
+ If you're rather interested in JSON format where reviews are accumulated by product name, you can find the dataset as a single JSON in dataset's [Github repo](https://github.com/turkish-nlp-suite/Vitamins-Supplements-Reviews).
54
+
55
+
56
+ ### Data Split
57
+
58
+ | name |train|validation|test|
59
+ |---------|----:|---:|---:|
60
+ |Vitamins and Supplements Reviews|200866|20000|20000|
61
+
62
+
63
+
64
+ ### Citation
65
+ This work is supported by Google Developer Experts Program. Part of Duygu 2022 Fall-Winter collection, "Turkish NLP with Duygu"/ "Duygu'yla Türkçe NLP". All rights reserved. If you'd like to use this dataset in your own work, please kindly cite [A Diverse Set of Freely Available Linguistic Resources for Turkish](https://aclanthology.org/2023.acl-long.768/) :
66
+
67
+ ```
68
+ @inproceedings{altinok-2023-diverse,
69
+ title = "A Diverse Set of Freely Available Linguistic Resources for {T}urkish",
70
+ author = "Altinok, Duygu",
71
+ booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
72
+ month = jul,
73
+ year = "2023",
74
+ address = "Toronto, Canada",
75
+ publisher = "Association for Computational Linguistics",
76
+ url = "https://aclanthology.org/2023.acl-long.768",
77
+ pages = "13739--13750",
78
+ abstract = "This study presents a diverse set of freely available linguistic resources for Turkish natural language processing, including corpora, pretrained models and education material. Although Turkish is spoken by a sizeable population of over 80 million people, Turkish linguistic resources for natural language processing remain scarce. In this study, we provide corpora to allow practitioners to build their own applications and pretrained models that would assist industry researchers in creating quick prototypes. The provided corpora include named entity recognition datasets of diverse genres, including Wikipedia articles and supplement products customer reviews. In addition, crawling e-commerce and movie reviews websites, we compiled several sentiment analysis datasets of different genres. Our linguistic resources for Turkish also include pretrained spaCy language models. To the best of our knowledge, our models are the first spaCy models trained for the Turkish language. Finally, we provide various types of education material, such as video tutorials and code examples, that can support the interested audience on practicing Turkish NLP. The advantages of our linguistic resources are three-fold: they are freely available, they are first of their kind, and they are easy to use in a broad range of implementations. Along with a thorough description of the resource creation process, we also explain the position of our resources in the Turkish NLP world.",
79
+ }
80
+ ```