Sam04 commited on
Commit
ea420d3
·
verified ·
1 Parent(s): 75646f2

Update README: 6,456 files uploaded

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ language:
6
+ - am
7
+ - multilingual
8
+ ---
9
+
10
+ # Sam04/BlueLionEcho_tran
11
+
12
+ This dataset contains transcribed audio files organized in folders for scalability.
13
+
14
+ ## Dataset Structure
15
+
16
+ The dataset is organized with:
17
+ - **Audio files**: Stored in `audio_XXXXX/` folders (5000 files per folder)
18
+ - **Metadata**: Stored in `data_XXXXX/` folders as parquet files
19
+
20
+ This organization follows Hugging Face best practices for datasets with millions of files.
21
+
22
+ ## Statistics
23
+
24
+ - Total files: 6,456
25
+ - Total batches: 2525
26
+ - Audio folders: 3
27
+ - Files per folder: max 5000
28
+
29
+ ## Loading the Dataset
30
+ ```python
31
+ from datasets import load_dataset
32
+
33
+ # Load the complete dataset
34
+ dataset = load_dataset("Sam04/BlueLionEcho_tran")
35
+
36
+ # The 'audio' column contains paths like "audio_00000/0000000001_filename.wav"
37
+ # Files are automatically resolved when accessing the dataset
38
+ ```
39
+
40
+ ## Folder Organization
41
+
42
+ Audio files are distributed across folders to respect HuggingFace storage limits:
43
+ - `audio_00000/`: Files 0-4,999
44
+ - `audio_00001/`: Files 5,000-9,999
45
+ - etc.
46
+
47
+ Metadata (parquet files) are grouped by batch ranges:
48
+ - `data_00000/batches_0000000001_to_0000000020.parquet`
49
+ - etc.