Libri TTS dataset acoustic
LibriTTSDatasetAcoustic
Bases: Dataset
Loading preprocessed acoustic model data.
Source code in training/datasets/libritts_dataset_acoustic.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
__getitem__(idx)
Returns a sample from the dataset at the given index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
idx |
int
|
Index of the sample to return. |
required |
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dict[str, Any]: A dictionary containing the sample data. |
Source code in training/datasets/libritts_dataset_acoustic.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
|
__init__(lang='en', root='datasets_cache/LIBRITTS', url='train-clean-360', download=False, cache=False, mem_cache=False, cache_dir='datasets_cache', selected_speaker_ids=None)
A PyTorch dataset for loading preprocessed acoustic data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
root |
str
|
Path to the directory where the dataset is found or downloaded. |
'datasets_cache/LIBRITTS'
|
lang |
str
|
The language of the dataset. |
'en'
|
url |
str
|
The dataset url, default "train-clean-360". |
'train-clean-360'
|
download |
bool
|
Whether to download the dataset if it is not found. Defaults to True. |
False
|
cache |
bool
|
Whether to cache the preprocessed data to RAM. Defaults to False. |
False
|
mem_cache |
bool
|
Whether to cache the preprocessed data. Defaults to False. |
False
|
cache_dir |
str
|
Path to the directory where the cache is stored. Defaults to "datasets_cache". |
'datasets_cache'
|
selected_speaker_ids |
Optional[List[int]]
|
A list of selected speakers. Defaults to None. |
None
|
Source code in training/datasets/libritts_dataset_acoustic.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
__iter__()
Method makes the class iterable. It iterates over the _walker
attribute
and for each item, it gets the corresponding item from the dataset using the
__getitem__
method.
Yields:
The item from the dataset corresponding to the current item in _walker
.
Source code in training/datasets/libritts_dataset_acoustic.py
147 148 149 150 151 152 153 154 155 156 |
|
__len__()
Returns the number of samples in the dataset.
Returns int: Number of samples in the dataset.
Source code in training/datasets/libritts_dataset_acoustic.py
74 75 76 77 78 79 80 |
|
collate_fn(data)
Collates a batch of data samples.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
List
|
A list of data samples. |
required |
Returns:
Name | Type | Description |
---|---|---|
List |
List
|
A list of reprocessed data batches. |
Source code in training/datasets/libritts_dataset_acoustic.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
|
normalize_pitch(pitches)
Normalizes the pitch values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pitches |
List[Tensor]
|
A list of pitch values. |
required |
Returns:
Name | Type | Description |
---|---|---|
Tuple |
Tuple[float, float, float, float]
|
A tuple containing the normalized pitch values. |
Source code in training/datasets/libritts_dataset_acoustic.py
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|