smart9 commited on
Commit
2fba44d
·
verified ·
1 Parent(s): dae3b17

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -1
README.md CHANGED
@@ -6,4 +6,40 @@ language:
6
  - zh
7
  size_categories:
8
  - 1K<n<10K
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - zh
7
  size_categories:
8
  - 1K<n<10K
9
+ ---
10
+
11
+ # Chinese Speech Emotional Understanding Benchmark (CSEU-Bench)
12
+
13
+ - The benchmark aims to evaluate the ability of understanding psycho-linguistic emotion labels in Chinese speech. It contains Chinese speech audios with diverse syntactic structures, and 83 psycho-linguistic emotion entities as classification labels.
14
+
15
+ - Github: https://github.com/qiuchili/CSEU-Bench
16
+
17
+ # CSEU-Bench Components:
18
+
19
+ - `CSEU-Bench.csv`: all speech samples
20
+ - `CSEU-monosyllabic.csv`: speech samples with single-syllable words
21
+ - `CSEU-bisyllabic.csv`: speech samples with two-syllable words
22
+ - `CSEU-short-sentence.csv`: speech samples with short sentences
23
+ - `CSEU-discourse.csv`: discourse speech samples
24
+
25
+ # Columns in data files:
26
+
27
+ - `target`: speech scripts
28
+ - `target_audio`: speech audio file paths
29
+ - `sample_type`: syntactic structure of speech. monosyllabic, bisyllabic, short-sentence or discourse.
30
+ - `judgment`: 8 human judgment labels for each sample. For all labels, refer to utils/const.py in https://github.com/qiuchili/CSEU-Bench.
31
+ - `literal_sentiment`: Binary values indicating whether each speech audio is neutral by literal meaning. Only applies to discourse samples.
32
+ - `target_attitude`: golden speech emotion labels. For all labels, refer to utils/const.py in https://github.com/qiuchili/CSEU-Bench.
33
+
34
+ # Usage
35
+
36
+ - For dataset loading, use python `pandas`:
37
+ ```Python
38
+ import pandas as pd
39
+
40
+ df = pd.read_csv("CSEU-xxx.csv")
41
+ ```
42
+
43
+ - For running the experiments, please refer to https://github.com/qiuchili/CSEU-Bench.
44
+
45
+