ngademin commited on
Commit
4a6f017
·
verified ·
1 Parent(s): f30cda6

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +67 -28
README.md CHANGED
@@ -1,30 +1,69 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: audio
7
- dtype:
8
- audio:
9
- sampling_rate: 16000
10
- - name: text
11
- dtype: string
12
- - name: text_cleaned
13
- dtype: string
14
- splits:
15
- - name: train
16
- num_bytes: 471007200.1618284
17
- num_examples: 1715
18
- - name: validation
19
- num_bytes: 117619717.67817163
20
- num_examples: 429
21
- download_size: 585996333
22
- dataset_size: 588626917.84
23
- configs:
24
- - config_name: default
25
- data_files:
26
- - split: train
27
- path: data/train-*
28
- - split: validation
29
- path: data/validation-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ language:
6
+ - id # Change to your language code
7
+ tags:
8
+ - audio
9
+ - speech
10
+ - asr
11
+ size_categories:
12
+ - n<1K # Adjust based on your dataset size
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
+
15
+ # Audio Dataset for ASR
16
+
17
+ ## Dataset Description
18
+
19
+ This dataset contains audio recordings with corresponding transcriptions for Automatic Speech Recognition (ASR) tasks.
20
+
21
+ ### Dataset Summary
22
+
23
+ - **Total samples**: 2144
24
+ - **Train samples**: 1715
25
+ - **Validation samples**: 429
26
+ - **Audio format**: WAV, 16kHz, mono
27
+ - **Language**: Indonesian (adjust as needed)
28
+
29
+ ### Dataset Structure
30
+
31
+ ```python
32
+ {
33
+ 'id': str,
34
+ 'audio': Audio(sampling_rate=16000),
35
+ 'text': str,
36
+ 'text_cleaned': str
37
+ }
38
+ ```
39
+
40
+ ### Usage
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+ from huggingface_hub import login
45
+
46
+ # Login first for private dataset
47
+ login()
48
+
49
+ # Load the dataset
50
+ dataset = load_dataset("ngademin/Ben-Tucker")
51
+
52
+ # Or with explicit token
53
+ # dataset = load_dataset("ngademin/Ben-Tucker", token="your_hf_token")
54
+
55
+ print(dataset['train'][0])
56
+ ```
57
+
58
+ ### Citation
59
+
60
+ If you use this dataset, please cite:
61
+
62
+ ```
63
+ @dataset{your_dataset_2025,
64
+ title={Your Audio Dataset},
65
+ author={Your Name},
66
+ year={2025},
67
+ url={https://huggingface.co/datasets/ngademin/Ben-Tucker}
68
+ }
69
+ ```