Arjunj commited on
Commit
4edc710
·
verified ·
1 Parent(s): a6873ac

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ml
4
+ license: cc-by-sa-4.0
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ - text-to-speech
8
+ tags:
9
+ - malayalam
10
+ - speech
11
+ - audio
12
+ pretty_name: Malayalam Speech Dataset (VibeVoice)
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # Malayalam Speech Dataset (VibeVoice)
18
+
19
+ This dataset contains Malayalam speech audio files and their corresponding transcriptions, prepared for fine-tuning ASR (Automatic Speech Recognition) models like VibeVoice.
20
+
21
+ ## Dataset Description
22
+
23
+ The dataset consists of approximately 4,126 Malayalam audio clips in `.wav` format, each accompanied by a `.json` file containing the transcription and segment information.
24
+
25
+ - **Total Audio Files**: 4,126
26
+ - **Total Duration**: ~5-6 hours (estimated)
27
+ - **Format**: 16kHz WAV
28
+ - **Annotation**: JSON segments and `metadata.jsonl` entry for Hugging Face `datasets` library compatibility.
29
+
30
+ ## Dataset Structure
31
+
32
+ Each sample in the dataset is named with a consistent pattern (e.g., `female_mlf_01130_00015565294`) and has two associated files:
33
+ 1. `[id].wav`: The audio file.
34
+ 2. `[id].json`: Segment information and transcription.
35
+
36
+ Additionally, a `metadata.jsonl` file is provided at the root for easy loading via the `datasets` library.
37
+
38
+ ### metadata.jsonl format
39
+ ```json
40
+ {"file_name": "female_mlf_01130_00015565294.wav", "transcription": "അങ്ങനെ രണ്ടാം ലോകമഹായുദ്ധം അവസാനിച്ചു"}
41
+ ```
42
+
43
+ ## How to use
44
+
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ dataset = load_dataset("Arjunj/malayalam_speech", split="train")
49
+
50
+ # Access a sample
51
+ sample = dataset[0]
52
+ print(sample["audio"])
53
+ print(sample["transcription"])
54
+ ```
55
+
56
+ ## Source
57
+ This dataset was processed and collected from various Malayalam TTS/ASR sources, including OpenSLR IDs 63 and 64, formatted specifically for VibeVoice fine-tuning requirements.
58
+
59
+ ## License
60
+ Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).