Datasets:

Modalities:
Tabular
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
rlangman commited on
Commit
1ffa3fc
·
verified ·
1 Parent(s): 1d6d607

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -4
README.md CHANGED
@@ -7,6 +7,12 @@ configs:
7
  path: "22khz/manifest_22khz.json"
8
  - split: chapters
9
  path: "22khz/chapters_22khz.json"
 
 
 
 
 
 
10
  ---
11
 
12
  # HiFiTTS-2: A Large-Scale High Bandwidth Speech Dataset
@@ -23,11 +29,36 @@ padding: 0;
23
 
24
  This repository contains the metadata for HiFiTTS-2, a large scale speech dataset derived from LibriVox audiobooks. For more details, please refer to our paper. [TODO: Add ArXiv link]
25
 
26
- The dataset contains metadata for approximately 36.7k hours of audio that can be downloaded from LibriVox at a 48 kHz sampling rate.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
- The metadata contains estimated bandwidth, which can be used to infer the original sampling rate the audio was recorded at. The base dataset is filtered for a bandwidth appropriate for training speech models at *22 kHz*. We also provide a precomputed subset with 31.7k hours appropraite for *44 kHz* training. Users can modify the download script to use any sampling rate and bandwidth threshold which might be more appropriate for their work.
29
 
30
- Due to legal and ethical considerations, we do not redistribute LibriVox audiobooks on Hugging Face. All audio in the dataset can be downloaded from LibriVox, following the instructions below.
 
 
 
 
 
 
31
 
32
  ## Download Instructions
33
 
@@ -54,7 +85,7 @@ python /home/NeMo-speech-data-processor/main.py \
54
  --config-path="/home/NeMo-speech-data-processor/dataset_configs/english/hifitts2" \
55
  --config-name="config_22khz.yaml" \
56
  workspace_dir="/home/hifitts2" \
57
- chapter_filename="/home/hifitts2/chapters_22khz.json" \
58
  max_workers=8
59
  ```
60
 
 
7
  path: "22khz/manifest_22khz.json"
8
  - split: chapters
9
  path: "22khz/chapters_22khz.json"
10
+ - config_name: 44khz
11
+ data_files:
12
+ - split: manifest
13
+ path: "44khz/manifest_44khz.json"
14
+ - split: chapters
15
+ path: "44khz/chapters_44khz.json"
16
  ---
17
 
18
  # HiFiTTS-2: A Large-Scale High Bandwidth Speech Dataset
 
29
 
30
  This repository contains the metadata for HiFiTTS-2, a large scale speech dataset derived from LibriVox audiobooks. For more details, please refer to our paper. [TODO: Add ArXiv link]
31
 
32
+ The dataset contains metadata for approximately 36.7k hours of audio from 5k speakers that can be downloaded from LibriVox at a 48 kHz sampling rate.
33
+
34
+ The metadata contains estimated bandwidth, which can be used to infer the original sampling rate the audio was recorded at. The base dataset is filtered for a bandwidth appropriate for training speech models at 22 kHz. We also provide a precomputed subset with 31.7k hours appropraite for 44 kHz training. Users can modify the download script to use any sampling rate and bandwidth threshold which might be more appropriate for their work.
35
+
36
+ Due to ethical considerations, we do not redistribute LibriVox audiobooks on Hugging Face. All audio in the dataset can be downloaded from LibriVox, following the instructions below.
37
+
38
+ ## Dataset Format
39
+
40
+ The dataset contains an utterance level manifest with these fields:
41
+
42
+ - **audio_filepath**: Relative path where utterance is stored
43
+ - **speaker**: LibriVox speaker ID
44
+ - **set**: Dataset partition, either "train", "test_seen", "dev_seen", "test_unseen", or "dev_unseen"
45
+ - **duration**: Duration of utterance
46
+ - **bandwidth**: Estimated bandwidth of audiobook chapter containing this utterance.
47
+ - **wer**: ASR word error rate of *normalized_text*
48
+ - **cer**: ASR character error rate of *normalized_text*
49
+ - **text_source**: Data source text was taken from, either 'book' or 'mls'
50
+ - **text**: Original data source transcription
51
+ - **normalized_text**: Transcription output by text processing pipeline
52
 
53
+ The dataset contains an audiobook chapter level manifest with these fields:
54
 
55
+ - **url**: Download URL for the LibriVox audiobook chapter
56
+ - **chapter_filepath**: Relative path where audiobook chapter is stored
57
+ - **bandwidth**: Bandwidth estimated using the first 30 seconds of the chapter
58
+ - **utterances**: List of utterance metadata with the following fields
59
+ - **utterances.audio_filepath**: Relative path where utterance is stored
60
+ - **utterances.offset**: Offset of utterance within the chapter
61
+ - **utterances.duration**: Duration of utterance
62
 
63
  ## Download Instructions
64
 
 
85
  --config-path="/home/NeMo-speech-data-processor/dataset_configs/english/hifitts2" \
86
  --config-name="config_22khz.yaml" \
87
  workspace_dir="/home/hifitts2" \
88
+ chapter_filename="/home/hifitts2/errors_22khz.json" \
89
  max_workers=8
90
  ```
91