SkyWater21 commited on
Commit
43703f2
1 Parent(s): 51270b3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -42
README.md CHANGED
@@ -1,42 +1,61 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- config_name: google_translator
5
- features:
6
- - name: lt_text
7
- dtype: string
8
- - name: text
9
- dtype: string
10
- - name: labels
11
- sequence:
12
- class_label:
13
- names:
14
- '0': anger
15
- '1': disgust
16
- '2': fear
17
- '3': joy
18
- '4': sadness
19
- '5': surprise
20
- '6': neutral
21
- splits:
22
- - name: train
23
- num_bytes: 7095238
24
- num_examples: 43410
25
- - name: validation
26
- num_bytes: 885284
27
- num_examples: 5426
28
- - name: test
29
- num_bytes: 882333
30
- num_examples: 5427
31
- download_size: 6057071
32
- dataset_size: 8862855
33
- configs:
34
- - config_name: google_translator
35
- data_files:
36
- - split: train
37
- path: google_translator/train-*
38
- - split: validation
39
- path: google_translator/validation-*
40
- - split: test
41
- path: google_translator/test-*
42
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ dataset_info:
4
+ config_name: google_translator
5
+ features:
6
+ - name: lt_text
7
+ dtype: string
8
+ - name: text
9
+ dtype: string
10
+ - name: labels
11
+ sequence:
12
+ class_label:
13
+ names:
14
+ '0': anger
15
+ '1': disgust
16
+ '2': fear
17
+ '3': joy
18
+ '4': sadness
19
+ '5': surprise
20
+ '6': neutral
21
+ splits:
22
+ - name: train
23
+ num_bytes: 7095238
24
+ num_examples: 43410
25
+ - name: validation
26
+ num_bytes: 885284
27
+ num_examples: 5426
28
+ - name: test
29
+ num_bytes: 882333
30
+ num_examples: 5427
31
+ download_size: 6057071
32
+ dataset_size: 8862855
33
+ configs:
34
+ - config_name: google_translator
35
+ data_files:
36
+ - split: train
37
+ path: google_translator/train-*
38
+ - split: validation
39
+ path: google_translator/validation-*
40
+ - split: test
41
+ path: google_translator/test-*
42
+ task_categories:
43
+ - text-classification
44
+ language:
45
+ - en
46
+ - lt
47
+ ---
48
+ Original dataset: [GoEmotions dataset](https://huggingface.co/datasets/google-research-datasets/go_emotions)
49
+
50
+ The dataset was machine translated to Lithuanian using free Google Translate API.
51
+
52
+ Dataset contains 7 emotion labels as per Dr. Ekman theory. Labels are as follows:
53
+ ```yaml
54
+ 0: anger
55
+ 1: disgust
56
+ 2: fear
57
+ 3: joy
58
+ 4: sadness
59
+ 5: surprise
60
+ 6: neutral
61
+ ```