Datasets:

Modalities:
Tabular
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
rlangman commited on
Commit
05eb561
·
verified ·
1 Parent(s): 38053a7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -1,5 +1,12 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
3
  ---
4
 
5
  # HiFiTTS-2: A Large-Scale High Bandwidth Speech Dataset
@@ -16,6 +23,34 @@ padding: 0;
16
 
17
  ## Download Instructions
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  ## Dataset Owner(s)
21
 
 
1
  ---
2
  license: cc-by-4.0
3
+ configs:
4
+ - config_name: 22khz
5
+ data_files:
6
+ - split: utterancces
7
+ path: "manifest_22khz.json"
8
+ - split: chapters
9
+ path: "chapters_22khz.json"
10
  ---
11
 
12
  # HiFiTTS-2: A Large-Scale High Bandwidth Speech Dataset
 
23
 
24
  ## Download Instructions
25
 
26
+ 1. Download the *manifet.json* file and *chapter.json* files corresponding to your desired sampling rate from this Hugging Face repository. Copy these into a workspace directory (in this example */home/hifitts2*).
27
+ 2. Install NeMo-speech-data-processor (SDP) using the *Installation* instructions on https://github.com/NVIDIA/NeMo-speech-data-processor.
28
+ 3. Run the SDP script to download the dataset to local disk.
29
+
30
+ ```bash
31
+ python /home/NeMo-speech-data-processor/main.py \
32
+ --config-path="/home/NeMo-speech-data-processor/dataset_configs/english/hifitts2" \
33
+ --config-name="config_22khz.yaml" \
34
+ workspace_dir="/home/hifitts2" \
35
+ max_workers=8
36
+ ```
37
+
38
+ *max_workers* is the number of threads to use for downloading the data. To download the 44khz dataset, specify *config_44khz.yaml*.
39
+
40
+ By default, the script will download audio files into the workspace directory under *{workspace_dir}/audio_22khz*. The download will ignore HTTP errors and store information for any failed downloads into *{workspace_dir}/errors_22khz.json*. A new manifest will be created at *{worksapce_dir}/manifest_filtered_22khz.json* with utterances from failed audiobooks removed. You can override the default behavior by modifying the *config.yaml* file in your local SDP repository [TODO: Add link to config fil;e].
41
+
42
+ If you want to retry the download for failed audiobooks, rerun the script with the output *errors_22khz.json* file.
43
+
44
+ ```bash
45
+ python /home/NeMo-speech-data-processor/main.py \
46
+ --config-path="/home/NeMo-speech-data-processor/dataset_configs/english/hifitts2" \
47
+ --config-name="config_22khz.yaml" \
48
+ workspace_dir="/home/hifitts2" \
49
+ chapter_filename="/home/hifitts2/chapters_22khz.json" \
50
+ max_workers=8
51
+ ```
52
+
53
+ Due to legal and ethical considerations, we do not redistribute LibriVox audiobooks to download from Hugging Face.
54
 
55
  ## Dataset Owner(s)
56