Datasets:

Languages:
Korean
Multilinguality:
monolingual
Size Categories:
100K<n<1m
Tags:
License:
leey4n commited on
Commit
74c7161
1 Parent(s): 26d09c0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -2
README.md CHANGED
@@ -1,4 +1,13 @@
1
- ## KR3: Korean Restaurant Reviews with Ratings
 
 
 
 
 
 
 
 
 
2
  Korean sentiment classification dataset
3
 
4
  - Size: 460K(+180K)
@@ -9,9 +18,9 @@ Korean sentiment classification dataset
9
  from datasets import load_dataset
10
 
11
  kr3 = load_dataset("Wittgensteinian/KR3", name='kr3', split='train')
 
12
  ```
13
 
14
-
15
  ### ⚠️ Caution with `Rating` Column
16
  0 stands for negative review, 1 stands for positive review, and 2 stands for ambiguous review.
17
  **Note that rating 2 is not intended to be used directly for supervised learning(classification).** This data is included for additional pre-training purpose or other usage.
@@ -21,6 +30,9 @@ In other words, this dataset is basically a **binary** sentiment classification
21
  See all the codes for crawling/preprocessing the dataset and experiments with KR3 in [Gitlab Repo](https://gitlab.com/Wittgensteinian/kr3).
22
  See Kaggle dataset in [Kaggle Dataset](https://www.kaggle.com/ninetyninenewton/kr3-korean-restaurant-reviews-with-ratings).
23
 
 
 
 
24
  ### Legal Issues
25
  We concluded that the **non-commerical usage and release of KR3 fall into the range of fair use (공정 이용)** stated in the Korean copyright act (저작권법). We further clarify that we **did not agree to the terms of service** from any websites which might prohibit web crawling. In other words, web crawling we've done was proceeded without logging in to the website. Despite all of these, feel free to contact to any of the contributors if you notice any legal issues.
26
 
 
1
+ ---
2
+ language:
3
+ - ko
4
+ license: cc-by-nc-sa-4.0
5
+ tags:
6
+ - NLP
7
+ - Sentiment Analysis
8
+ ---
9
+
10
+ ### KR3: Korean Restaurant Reviews with Ratings
11
  Korean sentiment classification dataset
12
 
13
  - Size: 460K(+180K)
 
18
  from datasets import load_dataset
19
 
20
  kr3 = load_dataset("Wittgensteinian/KR3", name='kr3', split='train')
21
+ kr3 = kr3.remove_columns(['__index_level_0__']) # Original file didn't include this column. Suspect it's a hugging face issue.
22
  ```
23
 
 
24
  ### ⚠️ Caution with `Rating` Column
25
  0 stands for negative review, 1 stands for positive review, and 2 stands for ambiguous review.
26
  **Note that rating 2 is not intended to be used directly for supervised learning(classification).** This data is included for additional pre-training purpose or other usage.
 
30
  See all the codes for crawling/preprocessing the dataset and experiments with KR3 in [Gitlab Repo](https://gitlab.com/Wittgensteinian/kr3).
31
  See Kaggle dataset in [Kaggle Dataset](https://www.kaggle.com/ninetyninenewton/kr3-korean-restaurant-reviews-with-ratings).
32
 
33
+ ### License
34
+ **CC BY-NC-SA 4.0**
35
+
36
  ### Legal Issues
37
  We concluded that the **non-commerical usage and release of KR3 fall into the range of fair use (공정 이용)** stated in the Korean copyright act (저작권법). We further clarify that we **did not agree to the terms of service** from any websites which might prohibit web crawling. In other words, web crawling we've done was proceeded without logging in to the website. Despite all of these, feel free to contact to any of the contributors if you notice any legal issues.
38