AdoCleanCode commited on
Commit
e4be998
·
verified ·
1 Parent(s): 70ec65f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +30 -8
README.md CHANGED
@@ -13,13 +13,35 @@ dataset_info:
13
  dtype: string
14
  splits:
15
  - name: train
16
- num_bytes: 29499246
17
  num_examples: 9000
18
- download_size: 6852685
19
- dataset_size: 29499246
20
- configs:
21
- - config_name: default
22
- data_files:
23
- - split: train
24
- path: data/train-*
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  dtype: string
14
  splits:
15
  - name: train
16
+ num_bytes: unknown
17
  num_examples: 9000
18
+ download_size: unknown
19
+ dataset_size: unknown
 
 
 
 
 
20
  ---
21
+
22
+ # LLASA Stage 1 Training Dataset (Text-Phoneme Conversion)
23
+
24
+ This dataset contains filtered text-phoneme pairs for Stage 1 curriculum learning in LLASA.
25
+
26
+ ## Purpose
27
+
28
+ Stage 1 training teaches the model text ↔ phoneme conversion using LLAMA's existing text understanding capabilities.
29
+
30
+ ## Columns
31
+
32
+ - `phoneme_text_sequence`: Phoneme tokens → Text conversion sequence ("<|ph_0068|>... Convert into text: Hello world")
33
+ - `text_phoneme_sequence`: Text → Phoneme tokens conversion sequence ("Hello world Convert into phonemes: <|ph_0068|>...")
34
+ - `text`: Original text for reference
35
+ - `phonemes_ipa`: Original IPA phonemes for verification
36
+ - `phonemes_hex`: Hex-encoded phoneme tokens for verification
37
+
38
+ ## Filtering
39
+
40
+ The dataset has been filtered to exclude:
41
+ - Invalid MFA phonemizations where phonemes equal the normalized text (fallback cases like "spn")
42
+
43
+ ## Usage
44
+
45
+ Use this dataset for Stage 1 training with `--training_stage words_phonemes` in `train_llasa_with_phonemes.py`.
46
+
47
+ Total samples: 9000