sujalappa commited on
Commit
640d21e
·
verified ·
1 Parent(s): 8c4b8ba

Add dataset card with subset configurations

Browse files
Files changed (1) hide show
  1. README.md +176 -0
README.md CHANGED
@@ -1,3 +1,179 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ dataset_info:
4
+ - config_name: default
5
+ features:
6
+ - name: audio
7
+ dtype:
8
+ audio:
9
+ sampling_rate: 16000
10
+ - name: md5_audio
11
+ dtype: string
12
+ - name: duration
13
+ dtype: float32
14
+ - name: text
15
+ dtype: string
16
+ splits:
17
+ download_size: 0
18
+ dataset_size: 0
19
+ - config_name: original
20
+ features:
21
+ - name: audio
22
+ dtype:
23
+ audio:
24
+ sampling_rate: 16000
25
+ - name: md5_audio
26
+ dtype: string
27
+ - name: duration
28
+ dtype: float32
29
+ - name: text
30
+ dtype: string
31
+ splits:
32
+ - name: train
33
+ num_bytes: 50000000
34
+ num_examples: 100
35
+ download_size: 42500000
36
+ dataset_size: 50000000
37
+ - config_name: largeroom
38
+ features:
39
+ - name: audio
40
+ dtype:
41
+ audio:
42
+ sampling_rate: 16000
43
+ - name: md5_audio
44
+ dtype: string
45
+ - name: duration
46
+ dtype: float32
47
+ - name: text
48
+ dtype: string
49
+ splits:
50
+ - name: train
51
+ num_bytes: 50000000
52
+ num_examples: 100
53
+ download_size: 42500000
54
+ dataset_size: 50000000
55
+ - config_name: mediumroom
56
+ features:
57
+ - name: audio
58
+ dtype:
59
+ audio:
60
+ sampling_rate: 16000
61
+ - name: md5_audio
62
+ dtype: string
63
+ - name: duration
64
+ dtype: float32
65
+ - name: text
66
+ dtype: string
67
+ splits:
68
+ - name: train
69
+ num_bytes: 50000000
70
+ num_examples: 100
71
+ download_size: 42500000
72
+ dataset_size: 50000000
73
+ - config_name: smallroom
74
+ features:
75
+ - name: audio
76
+ dtype:
77
+ audio:
78
+ sampling_rate: 16000
79
+ - name: md5_audio
80
+ dtype: string
81
+ - name: duration
82
+ dtype: float32
83
+ - name: text
84
+ dtype: string
85
+ splits:
86
+ - name: train
87
+ num_bytes: 50000000
88
+ num_examples: 100
89
+ download_size: 42500000
90
+ dataset_size: 50000000
91
+ configs:
92
+ - config_name: original
93
+ data_files:
94
+ - split: train
95
+ path: original/train-*
96
+ - config_name: largeroom
97
+ data_files:
98
+ - split: train
99
+ path: largeroom/train-*
100
+ - config_name: mediumroom
101
+ data_files:
102
+ - split: train
103
+ path: mediumroom/train-*
104
+ - config_name: smallroom
105
+ data_files:
106
+ - split: train
107
+ path: smallroom/train-*
108
+ task_categories:
109
+ - automatic-speech-recognition
110
+ - text-to-speech
111
+ language:
112
+ - en
113
+ tags:
114
+ - dataset
115
+ - audio
116
+ - speech
117
+ - asr
118
+ pretty_name: Simulated Rirs Dataset
119
+ size_categories:
120
+ - n<1K
121
  ---
122
+
123
+ # Simulated Rirs Dataset
124
+
125
+ ## Dataset Description
126
+
127
+ This dataset contains 400 samples organized across multiple splits and 4 subsets.
128
+ The dataset includes audio data.
129
+
130
+ ## Dataset Structure
131
+
132
+ ### Subsets
133
+
134
+ This dataset includes the following subsets:
135
+
136
+ - **original**: 100 samples
137
+ - train: 100 samples
138
+ - **largeroom**: 100 samples
139
+ - train: 100 samples
140
+ - **mediumroom**: 100 samples
141
+ - train: 100 samples
142
+ - **smallroom**: 100 samples
143
+ - train: 100 samples
144
+
145
+ ### Usage
146
+
147
+ Load specific subset and split:
148
+ ```python
149
+ from datasets import load_dataset
150
+
151
+ # Load specific subset and split
152
+ dataset = load_dataset('sujalappa/simulated_rirs_dataset', 'original', split='train')
153
+
154
+ # Load all splits from a subset
155
+ dataset = load_dataset('sujalappa/simulated_rirs_dataset', 'original')
156
+
157
+ # Load everything
158
+ dataset = load_dataset('sujalappa/simulated_rirs_dataset')
159
+ ```
160
+
161
+ ## Dataset Creation
162
+
163
+ This dataset was created using StreamableDatasetManager on 2026-03-10T17:43:42.988009.
164
+
165
+ ### Data Fields
166
+
167
+ The dataset includes the following columns:
168
+ - **audio**: Audio data (16kHz sampling rate)
169
+ - **md5_audio**: String data
170
+ - **duration**: Float32 data
171
+ - **text**: String data
172
+
173
+ ## Technical Details
174
+
175
+ - **Total samples**: 400
176
+ - **Shard length**: 20
177
+ - **Number of subsets**: 4
178
+ - **Number of splits**: 1
179
+ - **Audio format**: 16kHz sampling rate