anke01 commited on
Commit
2552f8e
·
verified ·
1 Parent(s): a5a712c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -36
README.md CHANGED
@@ -1,56 +1,82 @@
1
- # Uyghur TTS Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- A high-quality Uyghur text-to-speech dataset derived from Common Voice.
4
 
5
- ## Dataset Overview
6
 
7
- | Metric | Value |
8
- |--------|-------|
 
 
 
9
  | Total Samples | 43,054 |
10
- | Total Duration | 81.43 hours |
11
- | Average Duration | 6.81 seconds |
12
- | Train Set | 40,901 samples |
13
- | Validation Set | 2,153 samples |
 
14
 
15
- ## Directory Structure
16
 
17
  ```
18
- ├── train.jsonl # Training set
19
- ├── val.jsonl # Validation set
20
- ├── wavs/ # Audio files (43,054 WAV files)
21
- ── ref_audio/ # Reference audio
 
 
 
 
22
  ```
23
 
24
  ## Data Format
25
 
26
- Each line in the JSONL files contains:
27
-
28
- ```json
29
- {
30
- "audio": "wavs/common_voice_ug_xxx.wav",
31
- "text": "سىلەردىكى مەسىلە دەل سىلەر ۋاز كەچكەن نەرسىلەرگە بولغان قىيماسلىق تۇيغۇسىدۇر.",
32
- "g2p_text": "silɛrdiki mɛsilɛ dɛl silɛr waz kɛt͡ʃkɛn nɛrsilɛrɡɛ bolʁan qijmasliq tujʁusidur.",
33
- "ref_audio": "ref_audio/reference.wav"
34
- }
35
- ```
36
 
37
  | Field | Description |
38
  |-------|-------------|
39
- | audio | Path to the audio file |
40
- | text | Uyghur text (Arabic script) |
41
- | g2p_text | Latin transliteration (G2P format) |
42
- | ref_audio | Reference audio path |
43
 
44
- ## Audio Specifications
45
 
46
- - Format: WAV
47
- - Duration range: 2.16 - 15.48 seconds
48
- - Most audio (74.9%) is between 5-10 seconds
 
 
49
 
50
- ## Source
 
51
 
52
- Data derived from [Mozilla Common Voice](https://commonvoice.mozilla.org/) Uyghur dataset.
 
 
 
53
 
54
- ## License
55
 
56
- Same as Common Voice: CC0-1.0
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - text-to-speech
5
+ language:
6
+ - ug
7
+ tags:
8
+ - uyghur
9
+ - tts
10
+ - speech-synthesis
11
+ - common-voice
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
 
16
+ # Uyghur Common Voice TTS Dataset
17
 
18
+ A cleaned and processed Text-to-Speech (TTS) dataset for the Uyghur language, derived from Mozilla Common Voice.
19
 
20
+ ## Dataset Summary
21
+
22
+ | Property | Value |
23
+ |----------|-------|
24
+ | Language | Uyghur (ug) |
25
  | Total Samples | 43,054 |
26
+ | Train Samples | 40,901 |
27
+ | Validation Samples | 2,153 |
28
+ | Audio Format | WAV |
29
+ | Source | Mozilla Common Voice |
30
+ | License | CC0-1.0 |
31
 
32
+ ## Dataset Structure
33
 
34
  ```
35
+ /
36
+ ├── train.jsonl # Training data (40,901 samples)
37
+ ├── val.jsonl # Validation data (2,153 samples)
38
+ ── wavs/ # Audio files (43,054 WAV files)
39
+ │ └── common_voice_ug_*.wav
40
+ ├── ref_audio/
41
+ │ └── reference.wav # Reference audio for voice cloning
42
+ └── README.md
43
  ```
44
 
45
  ## Data Format
46
 
47
+ Each line in `train.jsonl` / `val.jsonl` is a JSON object with:
 
 
 
 
 
 
 
 
 
48
 
49
  | Field | Description |
50
  |-------|-------------|
51
+ | `audio` | Path to the WAV audio file |
52
+ | `text` | Transcription text in Uyghur script |
53
+ | `ref_audio` | Path to reference audio file |
54
+ | `g2p_text` | Phonetic transcription (IPA format) |
55
 
56
+ ### Example
57
 
58
+ ```json
59
+ {"audio": "wavs/common_voice_ug_39468550.wav", "text": "مېنىڭدە خېلى مال", "ref_audio": "ref_audio/reference.wav", "g2p_text": "meniŋdɛ χeli mal"}
60
+ ```
61
+
62
+ ## Usage
63
 
64
+ ```python
65
+ from datasets import load_dataset
66
 
67
+ dataset = load_dataset("anke01/uyghur-common-voice-tts")
68
+ print(f"Train: {len(dataset['train'])} samples")
69
+ print(f"Validation: {len(dataset['validation'])} samples")
70
+ ```
71
 
72
+ ## Citation
73
 
74
+ ```bibtex
75
+ @misc{uyghur-common-voice-tts,
76
+ author = {anke01},
77
+ title = {Uyghur Common Voice TTS Dataset},
78
+ year = {2026},
79
+ publisher = {Hugging Face},
80
+ url = {https://huggingface.co/datasets/anke01/uyghur-common-voice-tts}
81
+ }
82
+ ```