WilsonChen0724 commited on
Commit
ed3027b
·
verified ·
1 Parent(s): 411b94d

Add dataset card metadata + composition

Browse files
Files changed (1) hide show
  1. README.md +98 -74
README.md CHANGED
@@ -1,79 +1,103 @@
1
  ---
2
  dataset_info:
3
  features:
4
- - name: qid
5
- dtype: int64
6
- - name: instruction
7
- dtype: string
8
- - name: answer
9
- dtype: string
10
- - name: source_dataset
11
- dtype: string
12
- - name: task_metric
13
- dtype: string
14
- - name: attribute_type
15
- dtype: string
16
- - name: attribute_value
17
- dtype: string
18
- - name: audio1
19
- dtype:
20
- audio:
21
- sampling_rate: 16000
22
- - name: audio2
23
- dtype:
24
- audio:
25
- sampling_rate: 16000
26
- - name: audio3
27
- dtype:
28
- audio:
29
- sampling_rate: 16000
30
- - name: audio4
31
- dtype:
32
- audio:
33
- sampling_rate: 16000
34
- - name: audio5
35
- dtype:
36
- audio:
37
- sampling_rate: 16000
38
- - name: audio1_duration
39
- dtype: float64
40
- - name: audio2_duration
41
- dtype: float64
42
- - name: audio3_duration
43
- dtype: float64
44
- - name: audio4_duration
45
- dtype: float64
46
- - name: audio5_duration
47
- dtype: float64
48
- - name: audio1_sps
49
- dtype: float64
50
- - name: audio2_sps
51
- dtype: float64
52
- - name: audio3_sps
53
- dtype: float64
54
- - name: audio4_sps
55
- dtype: float64
56
- - name: audio5_sps
57
- dtype: float64
58
- - name: audio1_text
59
- dtype: string
60
- - name: audio2_text
61
- dtype: string
62
- - name: audio3_text
63
- dtype: string
64
- - name: audio4_text
65
- dtype: string
66
- - name: audio5_text
67
- dtype: string
68
  splits:
69
- - name: test
70
- num_bytes: 27337042
71
- num_examples: 50
72
- download_size: 27343084
73
- dataset_size: 27337042
74
- configs:
75
- - config_name: default
76
- data_files:
77
- - split: test
78
- path: data/test-*
79
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: qid
5
+ dtype: int64
6
+ - name: instruction
7
+ dtype: string
8
+ - name: answer
9
+ dtype: string
10
+
11
+ - name: source_dataset
12
+ dtype: string
13
+ - name: task_metric
14
+ dtype: string
15
+ - name: attribute_type
16
+ dtype: string
17
+ - name: attribute_value
18
+ dtype: string
19
+
20
+ - name: audio1
21
+ dtype: audio
22
+ - name: audio2
23
+ dtype: audio
24
+ - name: audio3
25
+ dtype: audio
26
+ - name: audio4
27
+ dtype: audio
28
+ - name: audio5
29
+ dtype: audio
30
+
31
+ - name: audio1_duration
32
+ dtype: float64
33
+ - name: audio2_duration
34
+ dtype: float64
35
+ - name: audio3_duration
36
+ dtype: float64
37
+ - name: audio4_duration
38
+ dtype: float64
39
+ - name: audio5_duration
40
+ dtype: float64
41
+
42
+ - name: audio1_sps
43
+ dtype: float64
44
+ - name: audio2_sps
45
+ dtype: float64
46
+ - name: audio3_sps
47
+ dtype: float64
48
+ - name: audio4_sps
49
+ dtype: float64
50
+ - name: audio5_sps
51
+ dtype: float64
52
+
53
+ - name: audio1_text
54
+ dtype: string
55
+ - name: audio2_text
56
+ dtype: string
57
+ - name: audio3_text
58
+ dtype: string
59
+ - name: audio4_text
60
+ dtype: string
61
+ - name: audio5_text
62
+ dtype: string
63
+
 
 
 
 
64
  splits:
65
+ - name: test
66
+ num_examples: 50
67
+ configs:
68
+ - config_name: default
69
+ data_files:
70
+ - split: test
71
+ path: data/test-*
 
 
 
72
  ---
73
+
74
+ # Multi-Audio-Grounding: Max-Attribute Selection (L2-ARCTIC + CREMA-D)
75
+
76
+ Task: Given 5 audio options (A–E) and an instruction, select the option that matches
77
+ a target attribute and is either the **longest** (duration) or the **fastest** (speaking rate / sps)
78
+ among the matching options.
79
+
80
+ ## Composition (50 questions)
81
+
82
+ ### By dataset
83
+ - **CREMA-D**: 36
84
+ - **L2-ARCTIC**: 14
85
+
86
+ ### By metric
87
+ - **Fastest (sps)**: 25
88
+ - **Longest (duration)**: 25
89
+
90
+ ### By attribute type
91
+ - **emotion**: 22
92
+ - **gender**: 28
93
+
94
+ ### Breakdown (dataset × metric × attribute_type)
95
+ | dataset | metric | attribute_type | count |
96
+ |---|---|---|---:|
97
+ | CREMA-D | Fastest (sps) | emotion | 11 |
98
+ | CREMA-D | Fastest (sps) | gender | 7 |
99
+ | CREMA-D | Longest (duration) | emotion | 11 |
100
+ | CREMA-D | Longest (duration) | gender | 7 |
101
+ | L2-ARCTIC | Fastest (sps) | gender | 7 |
102
+ | L2-ARCTIC | Longest (duration) | gender | 7 |
103
+