lilgoose777 commited on
Commit
6bdb929
·
verified ·
1 Parent(s): 1e93180

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -20
README.md CHANGED
@@ -1,22 +1,51 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: audio
5
- dtype:
6
- audio:
7
- sampling_rate: 16000
8
- decode: false
9
- - name: sentence
10
- dtype: string
11
- splits:
12
- - name: train
13
- num_bytes: 61671465.0
14
- num_examples: 93
15
- download_size: 42862588
16
- dataset_size: 61671465.0
17
- configs:
18
- - config_name: default
19
- data_files:
20
- - split: train
21
- path: data/train-*
22
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ne
4
+ - en
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ tags:
8
+ - whisper
9
+ - nepali
10
+ - speech
11
+ - audio
12
+ license: cc-by-4.0
 
 
 
 
 
 
 
 
 
13
  ---
14
+
15
+ # Nepali Speech Dataset for Whisper
16
+
17
+ Nepali audio recordings with English translations.
18
+
19
+ ## Dataset Info
20
+ - **Total samples:** 93
21
+ - **Audio format:** WAV, 16kHz
22
+ - **Source language:** Nepali (ne)
23
+ - **Target language:** English (en)
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from datasets import load_dataset
29
+
30
+ # Load dataset
31
+ dataset = load_dataset("lilgoose777/nepali-english-speech-data")
32
+
33
+ # Access data
34
+ sample = dataset['train'][0]
35
+ print(sample['sentence']) # English translation
36
+ print(sample['audio']) # Audio data
37
+ ```
38
+
39
+ ## Fine-tuning Whisper
40
+
41
+ ```python
42
+ from transformers import WhisperProcessor, WhisperForConditionalGeneration
43
+
44
+ processor = WhisperProcessor.from_pretrained("openai/whisper-small")
45
+ model = WhisperForConditionalGeneration.from_pretrained("openai/whisper-small")
46
+
47
+ # Fine-tune on this dataset
48
+ ```
49
+
50
+ ## License
51
+ CC-BY-4.0