unlimitedbytes commited on
Commit
76f90d2
Β·
verified Β·
1 Parent(s): ed1f152

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +128 -23
README.md CHANGED
@@ -1,28 +1,133 @@
1
  ---
 
 
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  dataset_info:
4
  features:
5
- - name: audio
6
- dtype: audio
7
- - name: transcription
8
- dtype: string
9
- - name: voice
10
- dtype: string
11
- - name: phonemes
12
- dtype: int64
13
- - name: language
14
- dtype: string
15
- - name: gender
16
- dtype: string
17
- splits:
18
- - name: full
19
- num_bytes: 26282167325.48
20
- num_examples: 18266
21
- download_size: 22545245453
22
- dataset_size: 26282167325.48
23
- configs:
24
- - config_name: default
25
- data_files:
26
- - split: full
27
- path: data/full-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: mit
5
+ task_categories:
6
+ - text-to-speech
7
+ - automatic-speech-recognition
8
+ - audio-to-audio
9
+ pretty_name: Hailuo AI Voices Dataset
10
+ size_categories:
11
+ - 10K<n<100K
12
+ tags:
13
+ - audio
14
+ - speech
15
+ - voice
16
+ - text-to-speech
17
+ - UnlimitedBytes
18
  dataset_info:
19
  features:
20
+ - name: audio
21
+ dtype: audio
22
+ - name: transcription
23
+ dtype: string
24
+ - name: voice
25
+ dtype: string
26
+ - name: phonemes
27
+ dtype: int64
28
+ - name: language
29
+ dtype: string
30
+ - name: gender
31
+ dtype: string
 
 
 
 
 
 
 
 
 
 
 
32
  ---
33
+
34
+ # Hailuo AI Voices Dataset 🎀
35
+
36
+ [![Hugging Face](https://img.shields.io/badge/πŸ€—%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices)
37
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices/blob/main/LICENSE)
38
+
39
+ A curated collection of high-quality voice recordings with corresponding transcriptions and phoneme analysis. This dataset is designed for speech recognition, text-to-speech, and voice analysis tasks.
40
+
41
+ ## πŸ“Š Dataset Overview
42
+
43
+ The dataset provides a comprehensive collection of voice samples with the following features:
44
+
45
+ | Feature | Description |
46
+ |---------|------------|
47
+ | Audio Files | High-quality WAV format recordings |
48
+ | Transcription | Accurate transcriptions of each recording |
49
+ | Voice IDs | Unique identifiers for different speakers |
50
+ | Phoneme Counts | Number of phonemes in each utterance |
51
+ | Language | Language of the audio recording |
52
+ | Gender | Speaker's gender |
53
+
54
+ ## πŸ“Š Dataset Statistics
55
+
56
+ ### Audio Duration Distribution
57
+ ![Duration Distribution](https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices/resolve/main/stats/duration_distribution.png)
58
+
59
+ ### Text Length Distribution
60
+ ![Text Length Distribution](https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices/resolve/main/stats/text_length_distribution.png)
61
+
62
+ ### Samples per Voice
63
+ ![Samples per Voice](https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices/resolve/main/stats/samples_per_voice.png)
64
+
65
+ ### Key Metrics
66
+ - Total Samples: 3041
67
+ - Total Duration: 22.38 hours
68
+ - Average Duration: 26.49 seconds
69
+ - Average Text Length: 405.3 characters
70
+
71
+ ## πŸš€ Quick Start
72
+
73
+ ```python
74
+ from datasets import load_dataset
75
+
76
+ # Load the dataset
77
+ dataset = load_dataset("unlimitedbytes/hailuo-ai-voices", split="full")
78
+
79
+ # Explore a sample
80
+ example = dataset['train'][0]
81
+ print("πŸ“ Text:", example['text'])
82
+ print("πŸŽ™οΈ Voice:", example['voice'])
83
+ print("πŸ”€ Phonemes:", example['phonemes'])
84
+ ```
85
+
86
+ ## πŸ“– Dataset Structure
87
+
88
+ Each entry in the dataset contains:
89
+
90
+ ```python
91
+ {
92
+ 'audio': {
93
+ 'path': str, # Path to the audio file
94
+ 'array': np.array # Audio data as numpy array
95
+ },
96
+ 'text': str, # Transcription of the audio
97
+ 'voice': str, # Voice identifier (e.g., 'voice1')
98
+ 'phonemes': int # Number of phonemes in the utterance
99
+ }
100
+ ```
101
+
102
+ ## πŸ” Data Composition
103
+
104
+ - Multiple voice recordings from different speakers
105
+ - Clean transcriptions for each audio sample
106
+ - Phonetic analysis with phoneme counts
107
+ - Consistent audio format (WAV)
108
+
109
+ ## πŸ› οΈ Use Cases
110
+
111
+ - Text-to-Speech (TTS) training
112
+ - Speech Recognition
113
+ - Voice Analysis
114
+ - Phoneme Studies
115
+ - Speech Synthesis
116
+
117
+ ## πŸ“„ License
118
+
119
+ This project is licensed under the MIT License - see the [LICENSE](https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices/blob/main/LICENSE) for details.
120
+
121
+ ## πŸ“š Citation
122
+
123
+ If you use this dataset in your research, please cite:
124
+
125
+ ```bibtex
126
+ @dataset{hailuo_ai_voices,
127
+ author = {UnlimitedBytes},
128
+ title = {Hailuo AI Voices Dataset},
129
+ year = {2025},
130
+ publisher = {Hugging Face},
131
+ url = {https://huggingface.co/datasets/unlimitedbytes/hailuo-ai-voices}
132
+ }
133
+ ```