AdoCleanCode commited on
Commit
7096770
·
verified ·
1 Parent(s): 17fda32

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: text
5
+ dtype: string
6
+ - name: phonemes_ipa
7
+ dtype: string
8
+ - name: phoneme_tokens
9
+ dtype: string
10
+ - name: mixed_text
11
+ dtype: string
12
+ - name: xcodec2_tokens
13
+ dtype: string
14
+ - name: to_convert
15
+ dtype: string
16
+ - name: sequence
17
+ dtype: string
18
+ splits:
19
+ - name: train
20
+ num_bytes: unknown
21
+ num_examples: 1421568
22
+ download_size: unknown
23
+ dataset_size: unknown
24
+ ---
25
+
26
+ # Stage 2 Mixed Text/Phoneme TTS Dataset
27
+
28
+ This dataset contains mixed text/phoneme sequences for TTS training with curriculum learning.
29
+
30
+ ## Curriculum Learning
31
+
32
+ The probability of converting words to phonemes increases over the dataset:
33
+ - **Start**: p = 0.3 (more text, less phonemes)
34
+ - **End**: p = 1.0 (all phonemes)
35
+ - **Transition**: Linear over 500,000 rows
36
+
37
+ Each row uses p(i) for ALL its words/spaces, then i increments for the next row.
38
+
39
+ ## Features
40
+
41
+ | Column | Description |
42
+ |--------|-------------|
43
+ | `text` | Plain text (all words) |
44
+ | `phonemes_ipa` | IPA notation of all phonemes |
45
+ | `phoneme_tokens` | All phonemes as `<\|ph_xxxx\|>` hex tokens |
46
+ | `mixed_text` | Mixed text and phoneme tokens |
47
+ | `xcodec2_tokens` | Full audio as XCodec2 tokens |
48
+ | `to_convert` | "text and phonemes" / "phonemes" / "text" |
49
+ | `sequence` | Full training sequence with markers |
50
+
51
+ ## Training Format
52
+
53
+ ```
54
+ Convert the {to_convert} to speech: <|start_phon_gen|>{mixed_text}<|end_phon_gen|><|SPEECH_GENERATION_START|>{xcodec2_tokens}<|SPEECH_GENERATION_END|>
55
+ ```
56
+
57
+ ## Processing Info
58
+
59
+ - Source: AAdonis/multilingual_audio_alignments (english)
60
+ - Index range: 0 to 499541
61
+ - Samples per audio: 3
62
+ - Total samples: 1421568
63
+ - Final global row counter: 1421568
64
+ - Final probability: 1.000