myleslinder commited on
Commit
8a5e522
·
verified ·
1 Parent(s): 26c0715

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -2
README.md CHANGED
@@ -1,9 +1,98 @@
1
  ---
2
- license: cc-by-4.0
 
 
 
3
  task_categories:
4
  - audio-classification
5
  language:
6
  - en
 
 
7
  size_categories:
8
  - 1K<n<10K
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: TESS
3
+ annotations_creators:
4
+ - expert-generated
5
+ license: cc-by-nc-4.0
6
  task_categories:
7
  - audio-classification
8
  language:
9
  - en
10
+ multilinguality:
11
+ - monolingual
12
  size_categories:
13
  - 1K<n<10K
14
+ dataset_info:
15
+ features:
16
+ - name: path
17
+ dtype: string
18
+ - name: audio
19
+ dtype:
20
+ audio:
21
+ sampling_rate: 24400
22
+ - name: speaker_id
23
+ dtype: string
24
+ - name: text
25
+ dtype: string
26
+ - name: label
27
+ dtype:
28
+ class_label:
29
+ names:
30
+ '0': neutral
31
+ '1': happy
32
+ '2': sad
33
+ '3': angry
34
+ '4': fear
35
+ '5': disgust
36
+ '6': ps
37
+ splits:
38
+ - name: train
39
+ num_bytes: 946760
40
+ num_examples: 2800
41
+ download_size: 224036453
42
+ dataset_size: 946760
43
+ ---
44
+
45
+ # Dataset Card for Toronto emotional speech set (TESS)
46
+
47
+ ## Dataset Description
48
+
49
+ - **Homepage:** https://doi.org/10.5683/SP2/E8H2MF
50
+ - **Point of Contact:** Pichora-Fuller, M. Kathleen (University of Toronto Mississauga)
51
+
52
+ ### Dataset Summary
53
+
54
+ These stimuli were modeled on the Northwestern University Auditory Test No. 6 (NU-6; Tillman & Carhart, 1966). A set of 200 target words were spoken in the carrier phrase "Say the word _____' by two actresses (aged 26 and 64 years) and recordings were made of the set portraying each of seven emotions (anger, disgust, fear, happiness, pleasant surprise, sadness, and neutral). There are 2800 stimuli in total. Two actresses were recruited from the Toronto area. Both actresses speak English as their first language, are university educated, and have musical training. Audiometric testing indicated that both actresses have thresholds within the normal range. (2010-06-21)
55
+
56
+ ### Languages
57
+
58
+ English
59
+
60
+ ## Dataset Structure
61
+
62
+ ### Data Instances
63
+ ```json
64
+ {
65
+ 'path': '.../.cache/huggingface/datasets/downloads/extracted/.../tess/OAF_back_angry.wav',
66
+ 'audio': {
67
+ 'path': '.../.cache/huggingface/datasets/downloads/extracted/.../tess/OAF_back_angry.wav',
68
+ 'array': array([
69
+ -1.35336370e-06,
70
+ -1.84488497e-04,
71
+ -2.73496640e-04,
72
+ 1.40174336e-04,
73
+ 8.33026352e-05,
74
+ 0.00000000e+00
75
+ ]),
76
+ 'sampling_rate': 24400
77
+ },
78
+ 'speaker_id': 'OAF',
79
+ 'text': 'back',
80
+ 'label': 3
81
+ }
82
+ ```
83
+
84
+ ## Additional Information
85
+
86
+ ### Citation Information
87
+
88
+ ```BibTex
89
+ @data{SP2/E8H2MF_2020,
90
+ author = {Pichora-Fuller, M. Kathleen and Dupuis, Kate},
91
+ publisher = {Borealis},
92
+ title = {{Toronto emotional speech set (TESS)}},
93
+ year = {2020},
94
+ version = {DRAFT VERSION},
95
+ doi = {10.5683/SP2/E8H2MF},
96
+ url = {https://doi.org/10.5683/SP2/E8H2MF}
97
+ }
98
+ ```