scaredmeow commited on
Commit
3cd71ad
1 Parent(s): 7036b2c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -5
README.md CHANGED
@@ -6,6 +6,20 @@ language:
6
  - tl
7
  size_categories:
8
  - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
 
11
  # Dataset Card for Dataset Name
@@ -14,9 +28,9 @@ size_categories:
14
 
15
  - **Homepage:**
16
  - **Repository:**
17
- - **Paper:**
18
  - **Leaderboard:**
19
- - **Point of Contact:** [email protected]
20
 
21
  ### Dataset Summary
22
 
@@ -34,15 +48,25 @@ Tagalog (TL)
34
 
35
  ### Data Instances
36
 
37
- [More Information Needed]
 
 
 
 
 
 
 
 
38
 
39
  ### Data Fields
40
 
41
- [More Information Needed]
 
42
 
43
  ### Data Splits
44
 
45
- [More Information Needed]
 
46
 
47
  ## Dataset Creation
48
 
 
6
  - tl
7
  size_categories:
8
  - 1K<n<10K
9
+
10
+ dataset_info:
11
+ features:
12
+ - name: label
13
+ dtype:
14
+ class_label:
15
+ names:
16
+ '0': 1 star
17
+ '1': 2 star
18
+ '2': 3 stars
19
+ '3': 4 stars
20
+ '4': 5 stars
21
+ - name: text
22
+ dtype: string
23
  ---
24
 
25
  # Dataset Card for Dataset Name
 
28
 
29
  - **Homepage:**
30
  - **Repository:**
31
+ - **Paper:** [Enhancement to Low Resource Text Classification via Sequential Transfer Learning](#)
32
  - **Leaderboard:**
33
+ - **Point of Contact:** [Neil Riego](mailto:[email protected])
34
 
35
  ### Dataset Summary
36
 
 
48
 
49
  ### Data Instances
50
 
51
+ A typical data point, comprises of a text and the corresponding label.
52
+
53
+ An example from the YelpReviewFull test set looks as follows:
54
+ ```
55
+ {
56
+ 'label': 2,
57
+ 'text': 'Madaling masira yung sa may sinisintasan nya. Wala rin syang box. Sana mas ginawa pa na matibay para sana sulit yung pagkakabili'
58
+ }
59
+ ```
60
 
61
  ### Data Fields
62
 
63
+ - 'text': The review texts are escaped using double quotes ("), and any internal double quote is escaped by 2 double quotes ("").
64
+ - 'label': Corresponds to the score associated with the review (between 1 and 5).
65
 
66
  ### Data Splits
67
 
68
+ The Shopee reviews tl 15 dataset is constructed by randomly taking 2100 training samples and 450 samples for testing and validation for each review star from 1 to 5.
69
+ In total there are 10500 trainig samples and 2250 each in validation and testing samples.
70
 
71
  ## Dataset Creation
72