voxtream2 commited on
Commit
0439dff
·
verified ·
1 Parent(s): 58ed52f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md CHANGED
@@ -1,3 +1,51 @@
1
  ---
 
 
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: cc-by-4.0
5
+ configs:
6
+ - config_name: default
7
+ data_files:
8
+ - split: emilia
9
+ path: emilia/*
10
+ - split: hifitts2
11
+ path: hifitts2/*
12
+ splits:
13
+ - name: emilia
14
+ num_examples: 2240471
15
+ - name: hifitts2
16
+ num_examples: 713769
17
+ tags:
18
+ - text-to-speech
19
+ task_categories:
20
+ - text-to-speech
21
  ---
22
+
23
+ # Model Card for VoXtream2 training dataset
24
+
25
+ This repository contains a training dataset for [VoXtream2](https://huggingface.co/voxtream2/model) TTS model.
26
+
27
+ The dataset contains 40k hours:
28
+
29
+ - 30k hours subset from [Emilia](https://huggingface.co/datasets/amphion/Emilia-Dataset) dataset.
30
+ - 10k hours subset from [HiFiTTS2](https://huggingface.co/datasets/nvidia/hifitts-2) dataset (22 kHz).
31
+
32
+ All utterances are 55 seconds long. We concatenated multiple utterances within the same speaker and padded shorter clips with silence. Sampling rate: 24kHz.
33
+
34
+ ### Description
35
+
36
+ - **mimi_codes** - Tokens extracted by the [Mimi](https://huggingface.co/kyutai/mimi) audio codec (16 codebooks).
37
+ - **phone_emb_indices** - Alignment of phoneme tokens to Mimi audio frames extracted by [ClapIPA](https://github.com/lingjzhu/clap-ipa) forced aligner.
38
+ - **phone_tokens** - IPA Phoneme tokens extracted with [espeak-ng](https://github.com/espeak-ng/espeak-ng) phonemizer.
39
+ - **sem_label_shifts** - Monotonic phoneme alignment labels.
40
+ - **punctuation** - Punctuation tokens.
41
+ - **spk_templates** - Speaker templates for the first 3 seconds of audio extracted by [ReDimNet](https://github.com/IDRnD/redimnet) model.
42
+
43
+ ## Usage
44
+
45
+ To download the dataset, use the following code:
46
+
47
+ ```bash
48
+ from huggingface_hub import snapshot_download
49
+
50
+ local_dir = snapshot_download('voxtream2/train', repo_type='dataset')
51
+ ```