jsbeaudry commited on
Commit
cc983b6
·
verified ·
1 Parent(s): aefc8dc

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +27 -3
  2. dataset_info.json +35 -0
  3. metadata.csv +0 -0
README.md CHANGED
@@ -1,3 +1,27 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ - text-to-speech
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 1K<n<10K
10
+ ---
11
+
12
+ # Audio Dataset
13
+
14
+ This dataset contains audio segments with transcriptions for speech recognition and text-to-speech tasks.
15
+
16
+ ## Dataset Structure
17
+
18
+ - `dataset.json`: Complete dataset in JSON format
19
+ - `train.jsonl`: Dataset in JSONL format for use with Hugging Face datasets library
20
+ - `dataset_info.json`: Metadata about the dataset structure
21
+
22
+ Each entry contains:
23
+ - `file`: Original filename
24
+ - `audio`: Audio data with sampling rate
25
+ - `transcription`: Text transcription
26
+ - `duration`: Audio duration in seconds
27
+
dataset_info.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "jsbeaudry/tes-2020",
3
+ "description": "Audio segments with transcriptions",
4
+ "features": {
5
+ "audio": {
6
+ "sampling_rate": 24000,
7
+ "_type": "Audio"
8
+ },
9
+ "text": {
10
+ "dtype": "string"
11
+ },
12
+ "duration": {
13
+ "dtype": "float64"
14
+ }
15
+ },
16
+ "homepage": "",
17
+ "license": "mit",
18
+ "task_categories": [
19
+ "automatic-speech-recognition",
20
+ "text-to-speech"
21
+ ],
22
+ "tags": [
23
+ "speech",
24
+ "audio",
25
+ "multilingual"
26
+ ],
27
+ "size_categories": "n<1K",
28
+ "splits": {
29
+ "train": {
30
+ "name": "train",
31
+ "num_bytes": 0,
32
+ "num_examples": 0
33
+ }
34
+ }
35
+ }
metadata.csv ADDED
File without changes