| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import json |
| import math |
| import os |
| import pickle |
| import random |
| from collections import defaultdict |
| from pathlib import Path |
| from typing import Callable, Dict, List, Optional, Union |
|
|
| import librosa |
| import numpy as np |
| import torch |
| from tqdm import tqdm |
|
|
| from nemo.collections.asr.parts.preprocessing.features import WaveformFeaturizer |
| from nemo.collections.asr.parts.preprocessing.segment import AudioSegment |
| from nemo.collections.common.tokenizers.text_to_speech.tts_tokenizers import BaseTokenizer |
| from nemo.collections.tts.parts.utils.tts_dataset_utils import ( |
| BetaBinomialInterpolator, |
| beta_binomial_prior_distribution, |
| general_padding, |
| get_base_dir, |
| ) |
| from nemo.collections.tts.torch.tts_data_types import ( |
| DATA_STR2DATA_CLASS, |
| MAIN_DATA_TYPES, |
| AlignPriorMatrix, |
| Durations, |
| Energy, |
| LogMel, |
| P_voiced, |
| Pitch, |
| ReferenceAudio, |
| SpeakerID, |
| TTSDataType, |
| Voiced_mask, |
| WithLens, |
| ) |
| from nemo.core.classes import Dataset |
| from nemo.utils import logging |
|
|
| try: |
| from nemo_text_processing.text_normalization.normalize import Normalizer |
|
|
| PYNINI_AVAILABLE = True |
| except (ImportError, ModuleNotFoundError): |
| Normalizer = None |
| PYNINI_AVAILABLE = False |
|
|
|
|
| EPSILON = 1e-9 |
| WINDOW_FN_SUPPORTED = { |
| 'hann': torch.hann_window, |
| 'hamming': torch.hamming_window, |
| 'blackman': torch.blackman_window, |
| 'bartlett': torch.bartlett_window, |
| 'none': None, |
| } |
|
|
|
|
| class TTSDataset(Dataset): |
| def __init__( |
| self, |
| manifest_filepath: Union[str, Path, List[str], List[Path]], |
| sample_rate: int, |
| text_tokenizer: Union[BaseTokenizer, Callable[[str], List[int]]], |
| tokens: Optional[List[str]] = None, |
| text_normalizer: Optional[Union[Normalizer, Callable[[str], str]]] = None, |
| text_normalizer_call_kwargs: Optional[Dict] = None, |
| text_tokenizer_pad_id: Optional[int] = None, |
| sup_data_types: Optional[List[str]] = None, |
| sup_data_path: Optional[Union[Path, str]] = None, |
| max_duration: Optional[float] = None, |
| min_duration: Optional[float] = None, |
| ignore_file: Optional[Union[str, Path]] = None, |
| trim: bool = False, |
| trim_ref: Optional[float] = None, |
| trim_top_db: Optional[int] = None, |
| trim_frame_length: Optional[int] = None, |
| trim_hop_length: Optional[int] = None, |
| n_fft: int = 1024, |
| win_length: Optional[int] = None, |
| hop_length: Optional[int] = None, |
| window: str = "hann", |
| n_mels: int = 80, |
| lowfreq: int = 0, |
| highfreq: Optional[int] = None, |
| segment_max_duration: Optional[int] = None, |
| pitch_augment: bool = False, |
| cache_pitch_augment: bool = True, |
| pad_multiple: int = 1, |
| **kwargs, |
| ): |
| """Dataset which can be used for training spectrogram generators and end-to-end TTS models. |
| It loads main data types (audio, text) and specified supplementary data types (log mel, durations, align prior matrix, pitch, energy, speaker id). |
| Some supplementary data types will be computed on the fly and saved in the sup_data_path if they did not exist before. |
| Saved folder can be changed for some supplementary data types (see keyword args section). |
| Arguments for supplementary data should be also specified in this class, and they will be used from kwargs (see keyword args section). |
| Args: |
| manifest_filepath (Union[str, Path, List[str], List[Path]]): Path(s) to the .json manifests containing information on the |
| dataset. Each line in the .json file should be valid json. Note: the .json file itself is not valid |
| json. Each line should contain the following: |
| "audio_filepath": <PATH_TO_WAV>, |
| "text": <THE_TRANSCRIPT>, |
| "normalized_text": <NORMALIZED_TRANSCRIPT> (Optional), |
| "mel_filepath": <PATH_TO_LOG_MEL_PT> (Optional), |
| "duration": <Duration of audio clip in seconds> (Optional), |
| sample_rate (int): The sample rate of the audio. Or the sample rate that we will resample all files to. |
| text_tokenizer (Optional[Union[BaseTokenizer, Callable[[str], List[int]]]]): BaseTokenizer or callable which represents text tokenizer. |
| tokens (Optional[List[str]]): Tokens from text_tokenizer. Should be specified if text_tokenizer is not BaseTokenizer. |
| text_normalizer (Optional[Union[Normalizer, Callable[[str], str]]]): Normalizer or callable which represents text normalizer. |
| text_normalizer_call_kwargs (Optional[Dict]): Additional arguments for text_normalizer function. |
| text_tokenizer_pad_id (Optional[int]): Index of padding. Should be specified if text_tokenizer is not BaseTokenizer. |
| sup_data_types (Optional[List[str]]): List of supplementary data types. |
| sup_data_path (Optional[Union[Path, str]]): A folder that contains or will contain supplementary data (e.g. pitch). |
| max_duration (Optional[float]): Max duration of audio clips in seconds. All samples exceeding this will be |
| pruned prior to training. Note: Requires "duration" to be set in the manifest file. It does not load |
| audio to compute duration. Defaults to None which does not prune. |
| min_duration (Optional[float]): Min duration of audio clips in seconds. All samples lower than this will be |
| pruned prior to training. Note: Requires "duration" to be set in the manifest file. It does not load |
| audio to compute duration. Defaults to None which does not prune. |
| ignore_file (Optional[Union[str, Path]]): The location of a pickle-saved list of audio paths |
| that will be pruned prior to training. Defaults to None which does not prune. |
| trim (bool): Whether to apply `librosa.effects.trim` to trim leading and trailing silence from an audio |
| signal. Defaults to False. |
| trim_ref (Optional[float]): the reference amplitude. By default, it uses `np.max` and compares to the peak |
| amplitude in the signal. |
| trim_top_db (Optional[int]): the threshold (in decibels) below reference to consider as silence. |
| Defaults to 60. |
| trim_frame_length (Optional[int]): the number of samples per analysis frame. Defaults to 2048. |
| trim_hop_length (Optional[int]): the number of samples between analysis frames. Defaults to 512. |
| n_fft (int): The number of fft samples. Defaults to 1024 |
| win_length (Optional[int]): The length of the stft windows. Defaults to None which uses n_fft. |
| hop_length (Optional[int]): The hope length between fft computations. Defaults to None which uses n_fft//4. |
| window (str): One of 'hann', 'hamming', 'blackman','bartlett', 'none'. Which corresponds to the |
| equivalent torch window function. |
| n_mels (int): The number of mel filters. Defaults to 80. |
| lowfreq (int): The lowfreq input to the mel filter calculation. Defaults to 0. |
| highfreq (Optional[int]): The highfreq input to the mel filter calculation. Defaults to None. |
| Keyword Args: |
| log_mel_folder (Optional[Union[Path, str]]): The folder that contains or will contain log mel spectrograms. |
| pitch_folder (Optional[Union[Path, str]]): The folder that contains or will contain pitch. |
| voiced_mask_folder (Optional[Union[Path, str]]): The folder that contains or will contain voiced mask of the pitch |
| p_voiced_folder (Optional[Union[Path, str]]): The folder that contains or will contain p_voiced(probability) of the pitch |
| energy_folder (Optional[Union[Path, str]]): The folder that contains or will contain energy. |
| durs_file (Optional[str]): String path to pickled durations location. |
| durs_type (Optional[str]): Type of durations. Currently, supported only "aligner-based". |
| use_beta_binomial_interpolator (Optional[bool]): Whether to use beta-binomial interpolator for calculating alignment prior matrix. Defaults to False. |
| pitch_fmin (Optional[float]): The fmin input to librosa.pyin. Defaults to librosa.note_to_hz('C2'). |
| pitch_fmax (Optional[float]): The fmax input to librosa.pyin. Defaults to librosa.note_to_hz('C7'). |
| pitch_mean (Optional[float]): The mean that we use to normalize the pitch. |
| pitch_std (Optional[float]): The std that we use to normalize the pitch. |
| segment_max_duration (Optional[float]): If audio length is greater than segment_max_duration, take a random segment of segment_max_duration (Used for SV task in SSLDisentangler) |
| pitch_augment (bool): Whether to apply pitch-shift transform and return a pitch-shifted audio. If set as False, audio_shifted will be None (used in SSLDisentangler) |
| cache_pitch_augment (bool): Whether to cache pitch augmented audio or not. Defaults to False (used in SSLDisentangler) |
| pad_multiple (int): If audio length is not divisible by pad_multiple, pad the audio with zeros to make it divisible by pad_multiple (used in SSLDisentangler) |
| pitch_norm (Optional[bool]): Whether to normalize pitch or not. If True, requires providing either |
| pitch_stats_path or (pitch_mean and pitch_std). |
| pitch_stats_path (Optional[Path, str]): Path to file containing speaker level pitch statistics. |
| reference_audio_type (Optional[str]): Criterion for the selection of reference audios for the GlobalStyleToken submodule. Currently, supported values are "ground-truth" (reference audio = ground truth audio, like in the original GST paper) and "same-speaker" (reference audio = random audio from the same speaker). Defaults to "same-speaker". |
| """ |
| super().__init__() |
|
|
| |
| self.text_tokenizer = text_tokenizer |
|
|
| self.phoneme_probability = None |
| if isinstance(self.text_tokenizer, BaseTokenizer): |
| self.text_tokenizer_pad_id = text_tokenizer.pad |
| self.phoneme_probability = getattr(self.text_tokenizer, "phoneme_probability", None) |
| else: |
| if text_tokenizer_pad_id is None: |
| raise ValueError("text_tokenizer_pad_id must be specified if text_tokenizer is not BaseTokenizer") |
|
|
| if tokens is None: |
| raise ValueError("tokens must be specified if text_tokenizer is not BaseTokenizer") |
|
|
| self.text_tokenizer_pad_id = text_tokenizer_pad_id |
| self.cache_text = True if self.phoneme_probability is None else False |
|
|
| |
| self.text_normalizer = text_normalizer |
| if self.text_normalizer is None: |
| self.text_normalizer_call = None |
| elif not PYNINI_AVAILABLE: |
| raise ImportError( |
| "`nemo_text_processing` is not installed, see https://github.com/NVIDIA/NeMo-text-processing for details. " |
| "If you wish to continue without text normalization, please remove the text_normalizer part in your TTS yaml file." |
| ) |
| else: |
| self.text_normalizer_call = ( |
| self.text_normalizer.normalize |
| if isinstance(self.text_normalizer, Normalizer) |
| else self.text_normalizer |
| ) |
| self.text_normalizer_call_kwargs = ( |
| text_normalizer_call_kwargs if text_normalizer_call_kwargs is not None else {} |
| ) |
|
|
| |
| if isinstance(manifest_filepath, str): |
| manifest_filepath = [manifest_filepath] |
| self.manifest_filepath = manifest_filepath |
| self.lengths = [] |
|
|
| data = [] |
| total_duration = 0 |
| for manifest_file in self.manifest_filepath: |
| with open(Path(manifest_file).expanduser(), 'r') as f: |
| logging.info(f"Loading dataset from {manifest_file}.") |
| for line in tqdm(f): |
| item = json.loads(line) |
|
|
| file_info = { |
| "audio_filepath": item["audio_filepath"], |
| "original_text": item["text"], |
| "mel_filepath": item["mel_filepath"] if "mel_filepath" in item else None, |
| "duration": item["duration"] if "duration" in item else None, |
| "speaker_id": item["speaker"] if "speaker" in item else None, |
| } |
|
|
| if "normalized_text" in item: |
| file_info["normalized_text"] = item["normalized_text"] |
| elif "text_normalized" in item: |
| file_info["normalized_text"] = item["text_normalized"] |
| else: |
| text = item["text"] |
| if self.text_normalizer is not None: |
| text = self.text_normalizer_call(text, **self.text_normalizer_call_kwargs) |
| file_info["normalized_text"] = text |
|
|
| if self.cache_text: |
| file_info["text_tokens"] = self.text_tokenizer(file_info["normalized_text"]) |
|
|
| data.append(file_info) |
| |
| self.lengths.append(os.path.getsize(item["audio_filepath"]) // (n_fft // 2)) |
|
|
| if file_info["duration"] is None: |
| logging.info( |
| "Not all audio files have duration information. Duration logging will be disabled." |
| ) |
| total_duration = None |
|
|
| if total_duration is not None: |
| total_duration += item["duration"] |
|
|
| logging.info(f"Loaded dataset with {len(data)} files.") |
| if total_duration is not None: |
| logging.info(f"Dataset contains {total_duration / 3600:.2f} hours.") |
|
|
| self.data = TTSDataset.filter_files(data, ignore_file, min_duration, max_duration, total_duration) |
| self.base_data_dir = get_base_dir([item["audio_filepath"] for item in self.data]) |
|
|
| |
| self.sample_rate = sample_rate |
| self.featurizer = WaveformFeaturizer(sample_rate=self.sample_rate) |
| self.trim = trim |
| self.trim_ref = trim_ref if trim_ref is not None else np.max |
| self.trim_top_db = trim_top_db if trim_top_db is not None else 60 |
| self.trim_frame_length = trim_frame_length if trim_frame_length is not None else 2048 |
| self.trim_hop_length = trim_hop_length if trim_hop_length is not None else 512 |
|
|
| self.segment_max_duration = segment_max_duration |
| self.pitch_augment = pitch_augment |
| self.cache_pitch_augment = cache_pitch_augment |
|
|
| self.n_fft = n_fft |
| self.n_mels = n_mels |
| self.lowfreq = lowfreq |
| self.highfreq = highfreq |
| self.window = window |
| self.win_length = win_length or self.n_fft |
| self.hop_length = hop_length |
| self.hop_len = self.hop_length or self.n_fft // 4 |
| self.fb = torch.tensor( |
| librosa.filters.mel( |
| sr=self.sample_rate, n_fft=self.n_fft, n_mels=self.n_mels, fmin=self.lowfreq, fmax=self.highfreq |
| ), |
| dtype=torch.float, |
| ).unsqueeze(0) |
|
|
| try: |
| window_fn = WINDOW_FN_SUPPORTED[self.window] |
| except KeyError: |
| raise NotImplementedError( |
| f"Current implementation doesn't support {self.window} window. " |
| f"Please choose one from {list(WINDOW_FN_SUPPORTED.keys())}." |
| ) |
|
|
| self.stft = lambda x: torch.stft( |
| input=x, |
| n_fft=self.n_fft, |
| hop_length=self.hop_len, |
| win_length=self.win_length, |
| window=window_fn(self.win_length, periodic=False).to(torch.float) if window_fn else None, |
| return_complex=True, |
| ) |
|
|
| |
| if sup_data_path is not None: |
| Path(sup_data_path).mkdir(parents=True, exist_ok=True) |
| self.sup_data_path = sup_data_path |
|
|
| self.sup_data_types = [] |
| if sup_data_types is not None: |
| for d_as_str in sup_data_types: |
| try: |
| sup_data_type = DATA_STR2DATA_CLASS[d_as_str] |
| except KeyError: |
| raise NotImplementedError(f"Current implementation doesn't support {d_as_str} type.") |
|
|
| self.sup_data_types.append(sup_data_type) |
|
|
| if ("voiced_mask" in sup_data_types or "p_voiced" in sup_data_types) and ("pitch" not in sup_data_types): |
| raise ValueError( |
| "Please add 'pitch' to sup_data_types in YAML because 'pitch' is required when using either " |
| "'voiced_mask' or 'p_voiced' or both." |
| ) |
|
|
| self.sup_data_types_set = set(self.sup_data_types) |
|
|
| for data_type in self.sup_data_types: |
| getattr(self, f"add_{data_type.name}")(**kwargs) |
|
|
| self.pad_multiple = pad_multiple |
|
|
| @staticmethod |
| def filter_files(data, ignore_file, min_duration, max_duration, total_duration): |
| if ignore_file: |
| logging.info(f"Using {ignore_file} to prune dataset.") |
| with open(Path(ignore_file).expanduser(), "rb") as f: |
| wavs_to_ignore = set(pickle.load(f)) |
|
|
| filtered_data: List[Dict] = [] |
| pruned_duration = 0 if total_duration is not None else None |
| pruned_items = 0 |
| for item in data: |
| audio_path = item['audio_filepath'] |
|
|
| |
| if total_duration is not None: |
| if (min_duration and item["duration"] < min_duration) or ( |
| max_duration and item["duration"] > max_duration |
| ): |
| pruned_duration += item["duration"] |
| pruned_items += 1 |
| continue |
|
|
| if ignore_file and (audio_path in wavs_to_ignore): |
| pruned_items += 1 |
| pruned_duration += item["duration"] |
| wavs_to_ignore.remove(audio_path) |
| continue |
|
|
| filtered_data.append(item) |
|
|
| logging.info(f"Pruned {pruned_items} files. Final dataset contains {len(filtered_data)} files") |
| if pruned_duration is not None: |
| logging.info( |
| f"Pruned {pruned_duration / 3600:.2f} hours. Final dataset contains " |
| f"{(total_duration - pruned_duration) / 3600:.2f} hours." |
| ) |
|
|
| return filtered_data |
|
|
| def add_log_mel(self, **kwargs): |
| self.log_mel_folder = kwargs.pop('log_mel_folder', None) |
|
|
| if self.log_mel_folder is None: |
| self.log_mel_folder = Path(self.sup_data_path) / LogMel.name |
| elif isinstance(self.log_mel_folder, str): |
| self.log_mel_folder = Path(self.log_mel_folder) |
|
|
| self.log_mel_folder.mkdir(exist_ok=True, parents=True) |
|
|
| def add_durations(self, **kwargs): |
| durs_file = kwargs.pop('durs_file') |
| durs_type = kwargs.pop('durs_type') |
|
|
| audio_stem2durs = torch.load(durs_file) |
| self.durs = [] |
|
|
| for tag in [Path(d["audio_filepath"]).stem for d in self.data]: |
| durs = audio_stem2durs[tag] |
| if durs_type == "aligner-based": |
| self.durs.append(durs) |
| else: |
| raise NotImplementedError( |
| f"{durs_type} duration type is not supported. Only aligner-based is supported at this moment." |
| ) |
|
|
| def add_align_prior_matrix(self, **kwargs): |
| self.use_beta_binomial_interpolator = kwargs.pop('use_beta_binomial_interpolator', False) |
| if not self.cache_text: |
| if 'use_beta_binomial_interpolator' in kwargs and not self.use_beta_binomial_interpolator: |
| logging.warning( |
| "phoneme_probability is not None, but use_beta_binomial_interpolator=False, we" |
| " set use_beta_binomial_interpolator=True manually to use phoneme_probability." |
| ) |
| self.use_beta_binomial_interpolator = True |
|
|
| if self.use_beta_binomial_interpolator: |
| self.beta_binomial_interpolator = BetaBinomialInterpolator() |
|
|
| def add_pitch(self, **kwargs): |
| self.pitch_folder = kwargs.pop('pitch_folder', None) |
|
|
| if self.pitch_folder is None: |
| self.pitch_folder = Path(self.sup_data_path) / Pitch.name |
| elif isinstance(self.pitch_folder, str): |
| self.pitch_folder = Path(self.pitch_folder) |
|
|
| self.pitch_folder.mkdir(exist_ok=True, parents=True) |
|
|
| self.pitch_fmin = kwargs.pop("pitch_fmin", librosa.note_to_hz('C2')) |
| self.pitch_fmax = kwargs.pop("pitch_fmax", librosa.note_to_hz('C7')) |
| self.pitch_mean = kwargs.pop("pitch_mean", None) |
| self.pitch_std = kwargs.pop("pitch_std", None) |
| self.pitch_norm = kwargs.pop("pitch_norm", False) |
| pitch_stats_path = kwargs.pop("pitch_stats_path", None) |
|
|
| if self.pitch_norm: |
| |
| assert (self.pitch_mean is None) == ( |
| self.pitch_std is None |
| ), f"Found only 1 of (pitch_mean, pitch_std): ({self.pitch_mean}, {self.pitch_std})" |
|
|
| |
| assert (self.pitch_mean is None) != (pitch_stats_path is None), ( |
| f"pitch_norm requires exactly 1 of (pitch_mean, pitch_std) or pitch_stats_path. " |
| f"Provided: ({self.pitch_mean}, {self.pitch_std}) and {pitch_stats_path}" |
| ) |
|
|
| if pitch_stats_path is not None: |
| with open(Path(pitch_stats_path), 'r', encoding="utf-8") as pitch_f: |
| self.pitch_stats = json.load(pitch_f) |
|
|
| |
| def add_voiced_mask(self, **kwargs): |
| self.voiced_mask_folder = kwargs.pop('voiced_mask_folder', None) |
|
|
| if self.voiced_mask_folder is None: |
| self.voiced_mask_folder = Path(self.sup_data_path) / Voiced_mask.name |
|
|
| self.voiced_mask_folder.mkdir(exist_ok=True, parents=True) |
|
|
| def add_p_voiced(self, **kwargs): |
| self.p_voiced_folder = kwargs.pop('p_voiced_folder', None) |
|
|
| if self.p_voiced_folder is None: |
| self.p_voiced_folder = Path(self.sup_data_path) / P_voiced.name |
|
|
| self.p_voiced_folder.mkdir(exist_ok=True, parents=True) |
|
|
| def add_energy(self, **kwargs): |
| self.energy_folder = kwargs.pop('energy_folder', None) |
|
|
| if self.energy_folder is None: |
| self.energy_folder = Path(self.sup_data_path) / Energy.name |
| elif isinstance(self.energy_folder, str): |
| self.energy_folder = Path(self.energy_folder) |
|
|
| self.energy_folder.mkdir(exist_ok=True, parents=True) |
|
|
| def add_speaker_id(self, **kwargs): |
| pass |
|
|
| def add_reference_audio(self, **kwargs): |
| reference_audio_type = kwargs.pop("reference_audio_type", "same-speaker") |
| if reference_audio_type == "same-speaker": |
| assert SpeakerID in self.sup_data_types, "Please add speaker_id in sup_data_types." |
| |
| speaker_to_index_map = defaultdict(set) |
| for i, d in enumerate(self.data): |
| speaker_to_index_map[d["speaker_id"]].add(i) |
| |
| self.get_reference_for_sample = lambda sample: self.data[ |
| random.choice(tuple(speaker_to_index_map[sample["speaker_id"]])) |
| ] |
| elif reference_audio_type == "ground-truth": |
| |
| self.get_reference_for_sample = lambda sample: sample |
| else: |
| raise NotImplementedError(f"Reference audio type \"{reference_audio_type}\" is not supported.") |
|
|
| def get_spec(self, audio): |
| with torch.amp.autocast(audio.device.type, enabled=False): |
| spec = self.stft(audio) |
| if spec.dtype in [torch.cfloat, torch.cdouble]: |
| spec = torch.view_as_real(spec) |
| spec = torch.sqrt(spec.pow(2).sum(-1) + EPSILON) |
| return spec |
|
|
| def get_log_mel(self, audio): |
| with torch.amp.autocast(audio.device.type, enabled=False): |
| spec = self.get_spec(audio) |
| mel = torch.matmul(self.fb.to(spec.dtype), spec) |
| log_mel = torch.log(torch.clamp(mel, min=torch.finfo(mel.dtype).tiny)) |
| return log_mel |
|
|
| def pitch_shift(self, audio, sr, rel_audio_path_as_text_id): |
| audio_shifted_path = Path(self.sup_data_path) / f"{rel_audio_path_as_text_id}_pitch_shift.pt" |
| if audio_shifted_path.exists() and self.cache_pitch_augment: |
| audio_shifted = torch.load(audio_shifted_path) |
| return audio_shifted |
| else: |
| choice1 = np.random.uniform(-4, -1) |
| choice2 = np.random.uniform(1, 4) |
| shift_val = random.choice([choice1, choice2]) |
| audio_shifted = librosa.effects.pitch_shift(audio, sr=sr, n_steps=shift_val) |
| |
| audio_shifted = torch.tensor(audio_shifted) |
| if self.cache_pitch_augment: |
| torch.save(audio_shifted, audio_shifted_path) |
| return audio_shifted |
|
|
| def _pad_wav_to_multiple(self, wav): |
| if self.pad_multiple > 1: |
| if wav.shape[0] % self.pad_multiple != 0: |
| wav = torch.cat( |
| [wav, torch.zeros(self.pad_multiple - wav.shape[0] % self.pad_multiple, dtype=torch.float)] |
| ) |
| return wav |
|
|
| def __getitem__(self, index): |
| sample = self.data[index] |
|
|
| |
| rel_audio_path = Path(sample["audio_filepath"]).relative_to(self.base_data_dir).with_suffix("") |
| rel_audio_path_as_text_id = str(rel_audio_path).replace("/", "_") |
|
|
| if ( |
| self.segment_max_duration is not None |
| and 'duration' in sample |
| and sample['duration'] > self.segment_max_duration |
| ): |
| |
| n_segments = int(self.segment_max_duration * self.sample_rate) |
| features = AudioSegment.segment_from_file( |
| sample["audio_filepath"], target_sr=self.sample_rate, n_segments=n_segments, trim=self.trim |
| ) |
| audio_shifted = None |
|
|
| |
| assert not self.pitch_augment |
|
|
| features = torch.tensor(features.samples) |
| if self.pad_multiple > 1: |
| features = self._pad_wav_to_multiple(features) |
| audio, audio_length = features, torch.tensor(features.shape[0]).long() |
| else: |
| features = self.featurizer.process( |
| sample["audio_filepath"], |
| trim=self.trim, |
| trim_ref=self.trim_ref, |
| trim_top_db=self.trim_top_db, |
| trim_frame_length=self.trim_frame_length, |
| trim_hop_length=self.trim_hop_length, |
| ) |
|
|
| if self.pad_multiple > 1: |
| features = self._pad_wav_to_multiple(features) |
| audio_shifted = None |
| if self.pitch_augment: |
| audio_shifted = self.pitch_shift( |
| features.cpu().detach().numpy(), self.sample_rate, rel_audio_path_as_text_id |
| ) |
| assert audio_shifted.size() == features.size(), "{} != {}".format( |
| audio_shifted.size(), features.size() |
| ) |
|
|
| audio, audio_length = features, torch.tensor(features.shape[0]).long() |
|
|
| if "text_tokens" in sample: |
| text = torch.tensor(sample["text_tokens"]).long() |
| text_length = torch.tensor(len(text)).long() |
| else: |
| tokenized = self.text_tokenizer(sample["normalized_text"]) |
| text = torch.tensor(tokenized).long() |
| text_length = torch.tensor(len(tokenized)).long() |
|
|
| |
| log_mel, log_mel_length = None, None |
| if LogMel in self.sup_data_types_set: |
| mel_path = sample["mel_filepath"] |
|
|
| if mel_path is not None and Path(mel_path).exists(): |
| log_mel = torch.load(mel_path) |
| else: |
| mel_path = self.log_mel_folder / f"{rel_audio_path_as_text_id}.pt" |
|
|
| if mel_path.exists(): |
| log_mel = torch.load(mel_path) |
| else: |
| log_mel = self.get_log_mel(audio) |
| torch.save(log_mel, mel_path) |
|
|
| log_mel = log_mel.squeeze(0) |
| log_mel_length = torch.tensor(log_mel.shape[1]).long() |
|
|
| |
| durations = None |
| if Durations in self.sup_data_types_set: |
| durations = self.durs[index] |
|
|
| |
| align_prior_matrix = None |
| if AlignPriorMatrix in self.sup_data_types_set: |
| mel_len = self.get_log_mel(audio).shape[2] |
| if self.use_beta_binomial_interpolator: |
| align_prior_matrix = torch.from_numpy(self.beta_binomial_interpolator(mel_len, text_length.item())) |
| else: |
| align_prior_matrix = torch.from_numpy(beta_binomial_prior_distribution(text_length, mel_len)) |
|
|
| non_exist_voiced_index = [] |
| my_var = locals() |
| for i, voiced_item in enumerate([Pitch, Voiced_mask, P_voiced]): |
| if voiced_item in self.sup_data_types_set: |
| voiced_folder = getattr(self, f"{voiced_item.name}_folder") |
| voiced_filepath = voiced_folder / f"{rel_audio_path_as_text_id}.pt" |
| if voiced_filepath.exists(): |
| my_var.__setitem__(voiced_item.name, torch.load(voiced_filepath).float()) |
| else: |
| non_exist_voiced_index.append((i, voiced_item.name, voiced_filepath)) |
|
|
| if len(non_exist_voiced_index) != 0: |
| voiced_tuple = librosa.pyin( |
| audio.numpy(), |
| fmin=self.pitch_fmin, |
| fmax=self.pitch_fmax, |
| frame_length=self.win_length, |
| sr=self.sample_rate, |
| fill_na=0.0, |
| ) |
| for i, voiced_name, voiced_filepath in non_exist_voiced_index: |
| my_var.__setitem__(voiced_name, torch.from_numpy(voiced_tuple[i]).float()) |
| torch.save(my_var.get(voiced_name), voiced_filepath) |
|
|
| pitch = my_var.get('pitch', None) |
| pitch_length = my_var.get('pitch_length', None) |
| voiced_mask = my_var.get('voiced_mask', None) |
| p_voiced = my_var.get('p_voiced', None) |
|
|
| |
| if pitch is not None: |
| pitch_length = torch.tensor(len(pitch)).long() |
| if self.pitch_norm: |
| if self.pitch_mean is not None and self.pitch_std is not None: |
| sample_pitch_mean = self.pitch_mean |
| sample_pitch_std = self.pitch_std |
| elif self.pitch_stats: |
| if "speaker_id" in sample and str(sample["speaker_id"]) in self.pitch_stats: |
| pitch_stats = self.pitch_stats[str(sample["speaker_id"])] |
| elif "default" in self.pitch_stats: |
| pitch_stats = self.pitch_stats["default"] |
| else: |
| raise ValueError(f"Could not find pitch stats for {sample}.") |
| sample_pitch_mean = pitch_stats["pitch_mean"] |
| sample_pitch_std = pitch_stats["pitch_std"] |
| else: |
| raise ValueError("Missing statistics for pitch normalization.") |
|
|
| pitch -= sample_pitch_mean |
| pitch[pitch == -sample_pitch_mean] = 0.0 |
| pitch /= sample_pitch_std |
|
|
| |
| energy, energy_length = None, None |
| if Energy in self.sup_data_types_set: |
| energy_path = self.energy_folder / f"{rel_audio_path_as_text_id}.pt" |
|
|
| if energy_path.exists(): |
| energy = torch.load(energy_path).float() |
| else: |
| spec = self.get_spec(audio) |
| energy = torch.linalg.norm(spec.squeeze(0), axis=0).float() |
| torch.save(energy, energy_path) |
|
|
| energy_length = torch.tensor(len(energy)).long() |
|
|
| |
| speaker_id = None |
| if SpeakerID in self.sup_data_types_set: |
| speaker_id = torch.tensor(sample["speaker_id"]).long() |
|
|
| reference_audio, reference_audio_length = None, None |
| if ReferenceAudio in self.sup_data_types_set: |
| reference = self.get_reference_for_sample(sample) |
| reference_audio = self.featurizer.process( |
| reference["audio_filepath"], |
| trim=self.trim, |
| trim_ref=self.trim_ref, |
| trim_top_db=self.trim_top_db, |
| trim_frame_length=self.trim_frame_length, |
| trim_hop_length=self.trim_hop_length, |
| ) |
| reference_audio_length = torch.tensor(reference_audio.shape[0]).long() |
|
|
| return ( |
| audio, |
| audio_length, |
| text, |
| text_length, |
| log_mel, |
| log_mel_length, |
| durations, |
| align_prior_matrix, |
| pitch, |
| pitch_length, |
| energy, |
| energy_length, |
| speaker_id, |
| voiced_mask, |
| p_voiced, |
| audio_shifted, |
| reference_audio, |
| reference_audio_length, |
| ) |
|
|
| def __len__(self): |
| return len(self.data) |
|
|
| def join_data(self, data_dict): |
| result = [] |
| for data_type in MAIN_DATA_TYPES + self.sup_data_types: |
| result.append(data_dict[data_type.name]) |
|
|
| if issubclass(data_type, TTSDataType) and issubclass(data_type, WithLens): |
| result.append(data_dict[f"{data_type.name}_lens"]) |
|
|
| return tuple(result) |
|
|
| def general_collate_fn(self, batch): |
| ( |
| _, |
| audio_lengths, |
| _, |
| tokens_lengths, |
| _, |
| log_mel_lengths, |
| durations_list, |
| align_prior_matrices_list, |
| pitches, |
| pitches_lengths, |
| energies, |
| energies_lengths, |
| _, |
| voiced_masks, |
| p_voiceds, |
| _, |
| _, |
| reference_audio_lengths, |
| ) = zip(*batch) |
|
|
| max_audio_len = max(audio_lengths).item() |
| max_tokens_len = max(tokens_lengths).item() |
| max_log_mel_len = max(log_mel_lengths) if LogMel in self.sup_data_types_set else None |
| max_durations_len = max([len(i) for i in durations_list]) if Durations in self.sup_data_types_set else None |
| max_pitches_len = max(pitches_lengths).item() if Pitch in self.sup_data_types_set else None |
| max_energies_len = max(energies_lengths).item() if Energy in self.sup_data_types_set else None |
| max_reference_audio_len = ( |
| max(reference_audio_lengths).item() if ReferenceAudio in self.sup_data_types_set else None |
| ) |
|
|
| if LogMel in self.sup_data_types_set: |
| log_mel_pad = torch.finfo(batch[0][4].dtype).tiny |
|
|
| align_prior_matrices = ( |
| torch.zeros( |
| len(align_prior_matrices_list), |
| max([prior_i.shape[0] for prior_i in align_prior_matrices_list]), |
| max([prior_i.shape[1] for prior_i in align_prior_matrices_list]), |
| ) |
| if AlignPriorMatrix in self.sup_data_types_set |
| else [] |
| ) |
| ( |
| audios, |
| tokens, |
| log_mels, |
| durations_list, |
| pitches, |
| energies, |
| speaker_ids, |
| voiced_masks, |
| p_voiceds, |
| audios_shifted, |
| reference_audios, |
| ) = ( |
| [], |
| [], |
| [], |
| [], |
| [], |
| [], |
| [], |
| [], |
| [], |
| [], |
| [], |
| ) |
|
|
| for i, sample_tuple in enumerate(batch): |
| ( |
| audio, |
| audio_len, |
| token, |
| token_len, |
| log_mel, |
| log_mel_len, |
| durations, |
| align_prior_matrix, |
| pitch, |
| pitch_length, |
| energy, |
| energy_length, |
| speaker_id, |
| voiced_mask, |
| p_voiced, |
| audio_shifted, |
| reference_audio, |
| reference_audios_length, |
| ) = sample_tuple |
|
|
| audio = general_padding(audio, audio_len.item(), max_audio_len) |
| audios.append(audio) |
|
|
| token = general_padding(token, token_len.item(), max_tokens_len, pad_value=self.text_tokenizer_pad_id) |
| tokens.append(token) |
|
|
| if audio_shifted is not None: |
| audio_shifted = general_padding(audio_shifted, audio_len.item(), max_audio_len) |
| audios_shifted.append(audio_shifted) |
|
|
| if LogMel in self.sup_data_types_set: |
| log_mels.append(general_padding(log_mel, log_mel_len, max_log_mel_len, pad_value=log_mel_pad)) |
|
|
| if Durations in self.sup_data_types_set: |
| durations_list.append(general_padding(durations, len(durations), max_durations_len)) |
|
|
| if AlignPriorMatrix in self.sup_data_types_set: |
| align_prior_matrices[i, : align_prior_matrix.shape[0], : align_prior_matrix.shape[1]] = ( |
| align_prior_matrix |
| ) |
|
|
| if Pitch in self.sup_data_types_set: |
| pitches.append(general_padding(pitch, pitch_length.item(), max_pitches_len)) |
|
|
| if Voiced_mask in self.sup_data_types_set: |
| voiced_masks.append(general_padding(voiced_mask, pitch_length.item(), max_pitches_len)) |
|
|
| if P_voiced in self.sup_data_types_set: |
| p_voiceds.append(general_padding(p_voiced, pitch_length.item(), max_pitches_len)) |
|
|
| if Energy in self.sup_data_types_set: |
| energies.append(general_padding(energy, energy_length.item(), max_energies_len)) |
|
|
| if SpeakerID in self.sup_data_types_set: |
| speaker_ids.append(speaker_id) |
|
|
| if ReferenceAudio in self.sup_data_types_set: |
| reference_audios.append( |
| general_padding(reference_audio, reference_audios_length.item(), max_reference_audio_len) |
| ) |
|
|
| data_dict = { |
| "audio": torch.stack(audios), |
| "audio_lens": torch.stack(audio_lengths), |
| "text": torch.stack(tokens), |
| "text_lens": torch.stack(tokens_lengths), |
| "log_mel": torch.stack(log_mels) if LogMel in self.sup_data_types_set else None, |
| "log_mel_lens": torch.stack(log_mel_lengths) if LogMel in self.sup_data_types_set else None, |
| "durations": torch.stack(durations_list) if Durations in self.sup_data_types_set else None, |
| "align_prior_matrix": align_prior_matrices if AlignPriorMatrix in self.sup_data_types_set else None, |
| "pitch": torch.stack(pitches) if Pitch in self.sup_data_types_set else None, |
| "pitch_lens": torch.stack(pitches_lengths) if Pitch in self.sup_data_types_set else None, |
| "energy": torch.stack(energies) if Energy in self.sup_data_types_set else None, |
| "energy_lens": torch.stack(energies_lengths) if Energy in self.sup_data_types_set else None, |
| "speaker_id": torch.stack(speaker_ids) if SpeakerID in self.sup_data_types_set else None, |
| "voiced_mask": torch.stack(voiced_masks) if Voiced_mask in self.sup_data_types_set else None, |
| "p_voiced": torch.stack(p_voiceds) if P_voiced in self.sup_data_types_set else None, |
| "audio_shifted": torch.stack(audios_shifted) if audio_shifted is not None else None, |
| "reference_audio": torch.stack(reference_audios) if ReferenceAudio in self.sup_data_types_set else None, |
| "reference_audio_lens": ( |
| torch.stack(reference_audio_lengths) if ReferenceAudio in self.sup_data_types_set else None |
| ), |
| } |
|
|
| return data_dict |
|
|
| def _collate_fn(self, batch): |
| data_dict = self.general_collate_fn(batch) |
| joined_data = self.join_data(data_dict) |
| return joined_data |
|
|
|
|
| class VocoderDataset(Dataset): |
| def __init__( |
| self, |
| manifest_filepath: Union[str, Path, List[str], List[Path]], |
| sample_rate: int, |
| n_segments: Optional[int] = None, |
| max_duration: Optional[float] = None, |
| min_duration: Optional[float] = None, |
| ignore_file: Optional[Union[str, Path]] = None, |
| trim: Optional[bool] = False, |
| load_precomputed_mel: bool = False, |
| hop_length: Optional[int] = None, |
| ): |
| """Dataset which can be used for training and fine-tuning vocoder with pre-computed mel-spectrograms. |
| Args: |
| manifest_filepath (Union[str, Path, List[str], List[Path]]): Path(s) to the .json manifests containing |
| information on the dataset. Each line in the .json file should be valid json. Note: the .json file itself |
| is not valid json. Each line should contain the following: |
| "audio_filepath": <PATH_TO_WAV>, |
| "duration": <Duration of audio clip in seconds> (Optional), |
| "mel_filepath": <PATH_TO_LOG_MEL> (Optional, can be in .npy (numpy.save) or .pt (torch.save) format) |
| sample_rate (int): The sample rate of the audio. Or the sample rate that we will resample all files to. |
| n_segments (int): The length of audio in samples to load. For example, given a sample rate of 16kHz, and |
| n_segments=16000, a random 1-second section of audio from the clip will be loaded. The section will |
| be randomly sampled everytime the audio is batched. Can be set to None to load the entire audio. |
| Must be specified if load_precomputed_mel is True. |
| max_duration (Optional[float]): Max duration of audio clips in seconds. All samples exceeding this will be |
| pruned prior to training. Note: Requires "duration" to be set in the manifest file. It does not load |
| audio to compute duration. Defaults to None which does not prune. |
| min_duration (Optional[float]): Min duration of audio clips in seconds. All samples lower than this will be |
| pruned prior to training. Note: Requires "duration" to be set in the manifest file. It does not load |
| audio to compute duration. Defaults to None which does not prune. |
| ignore_file (Optional[Union[str, Path]]): The location of a pickle-saved list of audio paths |
| that will be pruned prior to training. Defaults to None which does not prune. |
| trim (bool): Whether to apply librosa.effects.trim to the audio file. Defaults to False. |
| load_precomputed_mel (bool): Whether to load precomputed mel (useful for fine-tuning). |
| Note: Requires "mel_filepath" to be set in the manifest file. |
| hop_length (Optional[int]): The hope length between fft computations. Must be specified if load_precomputed_mel is True. |
| """ |
| super().__init__() |
|
|
| if load_precomputed_mel: |
| if hop_length is None: |
| raise ValueError("hop_length must be specified when load_precomputed_mel is True") |
|
|
| if n_segments is None: |
| raise ValueError("n_segments must be specified when load_precomputed_mel is True") |
|
|
| |
| if isinstance(manifest_filepath, str): |
| manifest_filepath = [manifest_filepath] |
| self.manifest_filepath = manifest_filepath |
|
|
| data = [] |
| total_duration = 0 |
| for manifest_file in self.manifest_filepath: |
| with open(Path(manifest_file).expanduser(), 'r') as f: |
| logging.info(f"Loading dataset from {manifest_file}.") |
| for line in tqdm(f): |
| item = json.loads(line) |
|
|
| if "mel_filepath" not in item and load_precomputed_mel: |
| raise ValueError(f"mel_filepath is missing in {manifest_file}") |
|
|
| file_info = { |
| "audio_filepath": item["audio_filepath"], |
| "mel_filepath": item["mel_filepath"] if "mel_filepath" in item else None, |
| "duration": item["duration"] if "duration" in item else None, |
| } |
|
|
| data.append(file_info) |
|
|
| if file_info["duration"] is None: |
| logging.info( |
| "Not all audio files have duration information. Duration logging will be disabled." |
| ) |
| total_duration = None |
|
|
| if total_duration is not None: |
| total_duration += item["duration"] |
|
|
| logging.info(f"Loaded dataset with {len(data)} files.") |
| if total_duration is not None: |
| logging.info(f"Dataset contains {total_duration / 3600:.2f} hours.") |
|
|
| self.data = TTSDataset.filter_files(data, ignore_file, min_duration, max_duration, total_duration) |
| self.base_data_dir = get_base_dir([item["audio_filepath"] for item in self.data]) |
|
|
| |
| self.load_precomputed_mel = load_precomputed_mel |
| self.featurizer = WaveformFeaturizer(sample_rate=sample_rate) |
| self.sample_rate = sample_rate |
| self.n_segments = n_segments |
| self.hop_length = hop_length |
| self.trim = trim |
|
|
| def _collate_fn(self, batch): |
| if self.load_precomputed_mel: |
| return torch.utils.data.dataloader.default_collate(batch) |
|
|
| audio_lengths = [audio_len for _, audio_len in batch] |
| audio_signal = torch.zeros(len(batch), max(audio_lengths), dtype=torch.float) |
|
|
| for i, sample in enumerate(batch): |
| audio_signal[i].narrow(0, 0, sample[0].size(0)).copy_(sample[0]) |
|
|
| return audio_signal, torch.tensor(audio_lengths, dtype=torch.long) |
|
|
| def __getitem__(self, index): |
| sample = self.data[index] |
|
|
| if not self.load_precomputed_mel: |
| features = AudioSegment.segment_from_file( |
| sample["audio_filepath"], |
| target_sr=self.sample_rate, |
| n_segments=self.n_segments if self.n_segments is not None else -1, |
| trim=self.trim, |
| ) |
| features = torch.tensor(features.samples) |
| audio, audio_length = features, torch.tensor(features.shape[0]).long() |
|
|
| return audio, audio_length |
| else: |
| features = self.featurizer.process(sample["audio_filepath"], trim=self.trim) |
| audio, audio_length = features, torch.tensor(features.shape[0]).long() |
|
|
| if Path(sample["mel_filepath"]).suffix == ".npy": |
| mel = torch.from_numpy(np.load(sample["mel_filepath"])) |
| else: |
| mel = torch.load(sample["mel_filepath"]) |
| frames = math.ceil(self.n_segments / self.hop_length) |
|
|
| if len(audio) >= self.n_segments: |
| start = random.randint(0, mel.shape[1] - frames - 1) |
| mel = mel[:, start : start + frames] |
| audio = audio[start * self.hop_length : (start + frames) * self.hop_length] |
| else: |
| mel = torch.nn.functional.pad(mel, (0, frames - mel.shape[1])) |
| audio = torch.nn.functional.pad(audio, (0, self.n_segments - len(audio))) |
|
|
| return audio, len(audio), mel |
|
|
| def __len__(self): |
| return len(self.data) |
|
|
|
|
| class FastPitchSSLDataset(Dataset): |
| def __init__( |
| self, |
| manifest_filepath: Union[str, Path, List[str], List[Path]], |
| sample_rate: int, |
| ssl_content_emb_type: str, |
| pad_multiple: Optional[int] = 1024, |
| max_duration: Optional[float] = None, |
| min_duration: Optional[float] = None, |
| ignore_file: Optional[Union[str, Path]] = None, |
| trim: Optional[bool] = False, |
| pitch_conditioning: Optional[bool] = False, |
| pitch_mean: Optional[float] = None, |
| pitch_std: Optional[float] = None, |
| pitch_normalization: Optional[str] = None, |
| sup_data_dir: Optional[Union[str, Path]] = None, |
| speaker_stats_pitch_fp: Optional[Union[str, Path]] = None, |
| speaker_conditioning_type: Optional[str] = "per_sample", |
| ): |
| """Dataset used for training FastPitchModel_SSL model. |
| Requires supplementary data created using scripts/ssl_tts/make_supdata.py |
| Args: |
| manifest_filepath (Union[str, Path, List[str], List[Path]]): Path(s) to the .json manifests containing |
| information on the dataset. Each line in the .json file should be valid json. Note: the .json file itself |
| is not valid json. Each line should contain the following: |
| "audio_filepath": <PATH_TO_WAV>, |
| "speaker" : <SPEAKER NUM> |
| "duration": <Duration of audio clip in seconds> (Optional) |
| sample_rate (int): The sample rate of the audio. Or the sample rate that we will resample all files to. |
| ssl_content_emb_type (str): One of ["probs", "embedding", "log_probs", "embedding_and_probs"]. |
| Indicated which output to use as content embedding. |
| max_duration (Optional[float]): Max duration of audio clips in seconds. All samples exceeding this will be |
| pruned prior to training. Note: Requires "duration" to be set in the manifest file. It does not load |
| audio to compute duration. Defaults to None which does not prune. |
| min_duration (Optional[float]): Min duration of audio clips in seconds. All samples lower than this will be |
| pruned prior to training. Note: Requires "duration" to be set in the manifest file. It does not load |
| audio to compute duration. Defaults to None which does not prune. |
| ignore_file (Optional[Union[str, Path]]): The location of a pickle-saved list of audio paths |
| that will be pruned prior to training. Defaults to None which does not prune. |
| trim (bool): Whether to apply `librosa.effects.trim` to trim leading and trailing silence from an audio |
| signal. Defaults to False. |
| pitch_conditioning (bool): Whether to load pitch contour or not |
| pitch_mean (Optional[float]): If using global normalization, normalize using these statistics. |
| Also used if speaker stats are not available for the given speaker |
| pitch_std (Optional[float]): If using global normalization, normalize using these statistics. |
| Also used if speaker stats are not available for the given speaker |
| pitch_normalization (str): Can be one of ['speaker_wise', 'global', 'none']. Indicates the kind of pitch normalization. |
| sup_data_dir (Optional[Union[str, Path]]): Data directory containing pre-computed embeddings/statistics. If set as |
| speaker_stats_pitch_fp (Optional[Union[str, Path]]): Path to the json containing speaker pitch stats. |
| If set as None, tries to lookup for a default filename (speaker_pitch_stats.json) in sup_data_dir. |
| Needed if we use pitch_normalization is "speaker_wise" |
| speaker_conditioning_type (Optional[str]): Can be one of ["per_sample", "mean", "interpolate"]. Defaults to "per_sample" |
| per_sample: Speaker embedding computed from the same utterance |
| mean: Speaker embedding for all utterances of a given speaker is the same and equal to the mean speaker embedding. |
| interpolate: Interpolate b/w per_sample and mean speaker embedding. |
| """ |
| assert ssl_content_emb_type in ["probs", "embedding", "log_probs", "embedding_and_probs"] |
|
|
| if isinstance(manifest_filepath, str): |
| manifest_filepath = [manifest_filepath] |
| self.manifest_filepath = manifest_filepath |
|
|
| data = [] |
| total_duration = 0 |
| |
| for manifest_file in self.manifest_filepath: |
| with open(Path(manifest_file).expanduser(), 'r') as f: |
| logging.info(f"Loading dataset from {manifest_file}.") |
| for line in tqdm(f): |
| item = json.loads(line) |
| if "speaker" not in item: |
| item["speaker"] = 0 |
| file_info = { |
| "audio_filepath": item["audio_filepath"], |
| "duration": item["duration"] if "duration" in item else None, |
| "speaker": item["speaker"] if "speaker" in item else 0, |
| "dataset_id": item["dataset_id"] if "dataset_id" in item else 0, |
| } |
|
|
| data.append(file_info) |
|
|
| if file_info["duration"] is None: |
| logging.info( |
| "Not all audio files have duration information. Duration logging will be disabled." |
| ) |
| total_duration = None |
|
|
| if total_duration is not None: |
| total_duration += item["duration"] |
|
|
| logging.info(f"Loaded dataset with {len(data)} files.") |
| if total_duration is not None: |
| logging.info(f"Dataset contains {total_duration / 3600:.2f} hours.") |
|
|
| self.data = TTSDataset.filter_files(data, ignore_file, min_duration, max_duration, total_duration) |
| self.base_data_dir = get_base_dir([item["audio_filepath"] for item in self.data]) |
|
|
| self.featurizer = WaveformFeaturizer(sample_rate=sample_rate) |
| self.sample_rate = sample_rate |
| self.trim = trim |
|
|
| self.pad_multiple = pad_multiple |
| self.pitch_normalization = pitch_normalization |
| self.pitch_mean = pitch_mean |
| self.pitch_std = pitch_std |
| self.pitch_conditioning = pitch_conditioning |
| self.speaker_conditioning_type = speaker_conditioning_type |
| self.ssl_content_emb_type = ssl_content_emb_type |
|
|
| if sup_data_dir is None: |
| sup_data_dir = os.path.join(self.base_data_dir, "sup_data") |
| self.sup_data_dir = sup_data_dir |
|
|
| if self.pitch_normalization == "speaker_wise": |
| self.speaker_stats = {} |
| if speaker_stats_pitch_fp is None: |
| speaker_stats_pitch_fp = os.path.join(sup_data_dir, "speaker_pitch_stats.json") |
|
|
| assert os.path.exists( |
| speaker_stats_pitch_fp |
| ), "speaker_stats_pitch_fp {} does not exist. Make sure to run scripts/ssl_tts/make_supdata.py before training.".format( |
| speaker_stats_pitch_fp |
| ) |
|
|
| with open(speaker_stats_pitch_fp, "r") as f: |
| speaker_stats_raw = json.load(f) |
| for key in speaker_stats_raw: |
| self.speaker_stats[int(key)] = speaker_stats_raw[key] |
|
|
| def _get_wav_from_filepath(self, audio_filepath): |
| features = AudioSegment.segment_from_file( |
| audio_filepath, |
| target_sr=self.sample_rate, |
| n_segments=-1, |
| trim=self.trim, |
| ) |
| audio_samples = features.samples |
|
|
| audio, audio_length = torch.tensor(audio_samples), torch.tensor(audio_samples.shape[0]).long() |
|
|
| |
| if audio.shape[0] % self.pad_multiple != 0: |
| audio = torch.cat( |
| [audio, torch.zeros(self.pad_multiple - audio.shape[0] % self.pad_multiple, dtype=torch.float)] |
| ) |
| audio_length = torch.tensor(audio.shape[0]).long() |
|
|
| return audio, audio_length |
|
|
| def get_ssl_features(self, wav_text_id): |
| content_emb_fn = f"{self.ssl_content_emb_type}_content_embedding_{wav_text_id}.pt" |
| speaker_emb_fn = f"speaker_embedding_{wav_text_id}.pt" |
| duration_fn = f"duration_embedding_{wav_text_id}.pt" |
| content_emb_fp = os.path.join(self.sup_data_dir, content_emb_fn) |
| speaker_emb_fp = os.path.join(self.sup_data_dir, speaker_emb_fn) |
| duration_fp = os.path.join(self.sup_data_dir, duration_fn) |
|
|
| if os.path.exists(content_emb_fp): |
| content_embedding = torch.load(content_emb_fp) |
| else: |
| raise ValueError( |
| f"Content embedding file {content_emb_fp} does not exist. Make sure to run scripts/ssl_tts/make_supdata.py before training." |
| ) |
|
|
| if os.path.exists(speaker_emb_fp): |
| speaker_embedding = torch.load(speaker_emb_fp) |
| else: |
| raise ValueError( |
| f"Speaker embedding file {speaker_emb_fp} does not exist. Make sure to run scripts/ssl_tts/make_supdata.py before training." |
| ) |
|
|
| if os.path.exists(duration_fp): |
| duration = torch.load(duration_fp) |
| else: |
| raise ValueError( |
| f"Duration file {duration_fp} does not exist. Make sure to run scripts/ssl_tts/make_supdata.py before training." |
| ) |
|
|
| encoded_len = torch.tensor(content_embedding.shape[1]).long() |
|
|
| return content_embedding, speaker_embedding, encoded_len, duration |
|
|
| def get_pitch_contour(self, wav_text_id): |
| pitch_contour_fn = f"pitch_contour_{wav_text_id}.pt" |
| pitch_contour_fp = os.path.join(self.sup_data_dir, pitch_contour_fn) |
| if os.path.exists(pitch_contour_fp): |
| return torch.load(pitch_contour_fp) |
| else: |
| raise ValueError( |
| f"Pitch contour file {pitch_contour_fp} does not exist. Make sure to run scripts/ssl_tts/make_supdata.py before training." |
| ) |
|
|
| def get_mel_spectrogram(self, wav_text_id): |
| mel_spec_fn = f"mel_spec_{wav_text_id}.pt" |
| mel_spec_fp = os.path.join(self.sup_data_dir, mel_spec_fn) |
| if os.path.exists(mel_spec_fp): |
| return torch.load(mel_spec_fp) |
| else: |
| raise ValueError( |
| f"Mel spectrogram file {mel_spec_fp} does not exist. Make sure to run scripts/ssl_tts/make_supdata.py before training." |
| ) |
|
|
| def pad_collate_fn(self, batch): |
| """ |
| Collate function for FastPitchModel_SSL. |
| Pads the tensors in the batch with zeros to match length of the longest sequence in the batch. |
| Used in fastpitch_ssl.py |
| """ |
| final_batch = defaultdict(list) |
| for row in batch: |
| for key in row: |
| final_batch[key].append(row[key]) |
|
|
| max_audio_len = max([_audio_len.item() for _audio_len in final_batch["audio_len"]]) |
| max_mel_len = max([_mel_len.item() for _mel_len in final_batch["mel_len"]]) |
| max_encoded_len = max([_encoded_len.item() for _encoded_len in final_batch["encoded_len"]]) |
|
|
| audios_padded = [] |
| for audio in final_batch["audio"]: |
| audio_padded = torch.nn.functional.pad(audio, (0, max_audio_len - audio.size(0)), value=0) |
| audios_padded.append(audio_padded) |
|
|
| mels_padded = [] |
| for mel in final_batch["mel_spectrogram"]: |
| mel_padded = torch.nn.functional.pad(mel, (0, max_mel_len - mel.size(1)), value=0) |
| mels_padded.append(mel_padded) |
|
|
| pitch_contours_padded = [] |
| for pitch_contour in final_batch["pitch_contour"]: |
| pitch_contour_padded = torch.nn.functional.pad( |
| pitch_contour, (0, max_mel_len - pitch_contour.size(0)), value=0 |
| ) |
| pitch_contours_padded.append(pitch_contour_padded) |
|
|
| content_embeddings_padded = [] |
| for encoded in final_batch["content_embedding"]: |
| encoded_padded = torch.nn.functional.pad(encoded, (0, max_encoded_len - encoded.size(1)), value=0) |
| content_embeddings_padded.append(encoded_padded) |
|
|
| durations_padded = [] |
| for duration in final_batch["duration"]: |
| duration_padded = torch.nn.functional.pad(duration, (0, max_encoded_len - duration.size(0)), value=0.0) |
| durations_padded.append(duration_padded) |
|
|
| final_batch["audio"] = audios_padded |
| final_batch["mel_spectrogram"] = mels_padded |
| final_batch["pitch_contour"] = pitch_contours_padded |
| final_batch["content_embedding"] = content_embeddings_padded |
| final_batch["duration"] = durations_padded |
|
|
| for key in final_batch: |
| final_batch[key] = torch.stack(final_batch[key]) |
|
|
| return final_batch |
|
|
| def __getitem__(self, index): |
| sample = self.data[index] |
| rel_audio_path = Path(sample["audio_filepath"]).relative_to(self.base_data_dir).with_suffix("") |
| rel_audio_path_as_text_id = str(rel_audio_path).replace("/", "_") |
| speaker = torch.tensor(sample["speaker"]).long() |
| dataset_id = torch.tensor(sample["dataset_id"]).long() |
|
|
| audio, audio_length = self._get_wav_from_filepath(sample["audio_filepath"]) |
|
|
| pitch_contour = None |
| if self.pitch_conditioning: |
| pitch_contour = self.get_pitch_contour(rel_audio_path_as_text_id) |
|
|
| content_embedding, speaker_embedding, encoded_len, duration = self.get_ssl_features(rel_audio_path_as_text_id) |
|
|
| if self.speaker_conditioning_type == "mean": |
| assert sample["speaker"] in self.mean_speaker_embeddings, "{} not in speaker emb".format(sample['speaker']) |
| speaker_embedding = self.mean_speaker_embeddings[sample["speaker"]] |
|
|
| elif self.speaker_conditioning_type == "interpolate": |
| assert sample["speaker"] in self.mean_speaker_embeddings, "{} not in speaker emb".format(sample['speaker']) |
| e1 = self.mean_speaker_embeddings[sample["speaker"]] |
| e2 = speaker_embedding |
| interpolate_factor = np.random.uniform(0, 1) |
| speaker_embedding = e1 * (1 - interpolate_factor) + e2 * interpolate_factor |
| l2_norm = torch.norm(speaker_embedding, p=2) |
| speaker_embedding = speaker_embedding / l2_norm |
|
|
| mel_spectrogram = None |
| mel_len = None |
|
|
| mel_spectrogram = self.get_mel_spectrogram(rel_audio_path_as_text_id) |
| mel_len = torch.tensor(mel_spectrogram.shape[1]).long() |
|
|
| if pitch_contour is not None: |
| if self.pitch_normalization in ["speaker_wise", "global"]: |
| mean, std = self.pitch_mean, self.pitch_std |
| if self.pitch_normalization == "speaker_wise": |
| mean = self.speaker_stats[sample["speaker"]]["pitch_mean"] |
| std = self.speaker_stats[sample["speaker"]]["pitch_std"] |
| if np.isnan(mean) or np.isnan(std) or mean == 0 or std == 0: |
| logging.warning("NaN found in pitch mean/std for speaker {}".format(sample["speaker"])) |
| mean = self.pitch_mean |
| std = self.pitch_std |
| elif self.pitch_normalization == "global": |
| mean = self.pitch_mean |
| std = self.pitch_std |
|
|
| pitch_contour = pitch_contour - mean |
| pitch_contour[pitch_contour == -mean] = 0.0 |
| pitch_contour = pitch_contour / std |
|
|
| if pitch_contour.dtype != torch.float32: |
| logging.warning("invalid pitch contour for {}".format(sample["audio_filepath"])) |
| logging.warning("Setting pitch contour to 0") |
| pitch_contour = torch.zeros(mel_spectrogram.shape[1]) |
|
|
| item = { |
| 'audio': audio, |
| 'audio_len': audio_length, |
| 'content_embedding': content_embedding, |
| 'speaker_embedding': speaker_embedding, |
| 'encoded_len': encoded_len, |
| 'pitch_contour': pitch_contour, |
| 'speaker': speaker, |
| 'mel_spectrogram': mel_spectrogram, |
| 'mel_len': mel_len, |
| 'dataset_id': dataset_id, |
| 'duration': duration, |
| } |
|
|
| return item |
|
|
| def __len__(self): |
| return len(self.data) |
|
|
|
|
| class DistributedBucketSampler(torch.utils.data.distributed.DistributedSampler): |
| """ |
| Maintain similar input lengths in a batch. |
| Length groups are specified by boundaries. |
| Ex) boundaries = [b1, b2, b3] -> any batch is included either {x | b1 < length(x) <=b2} or {x | b2 < length(x) <= b3}. |
| |
| It removes samples which are not included in the boundaries. |
| Ex) boundaries = [b1, b2, b3] -> any x s.t. length(x) <= b1 or length(x) > b3 are discarded. |
| """ |
|
|
| def __init__(self, dataset, batch_size, boundaries, num_replicas=None, rank=None, shuffle=True): |
| super().__init__(dataset, num_replicas=num_replicas, rank=rank, shuffle=shuffle) |
| self.lengths = dataset.lengths |
| self.batch_size = batch_size |
| self.boundaries = boundaries |
|
|
| self.buckets, self.num_samples_per_bucket = self._create_buckets() |
| self.total_size = sum(self.num_samples_per_bucket) |
| self.num_samples = self.total_size // self.num_replicas |
|
|
| def _create_buckets(self): |
| buckets = [[] for _ in range(len(self.boundaries) - 1)] |
| for i in range(len(self.lengths)): |
| length = self.lengths[i] |
| idx_bucket = self._bisect(length) |
| if idx_bucket != -1: |
| buckets[idx_bucket].append(i) |
|
|
| for i in range(len(buckets) - 1, 0, -1): |
| if len(buckets[i]) == 0: |
| buckets.pop(i) |
| self.boundaries.pop(i + 1) |
|
|
| num_samples_per_bucket = [] |
| total_batch_size = self.num_replicas * self.batch_size |
| for i in range(len(buckets)): |
| len_bucket = len(buckets[i]) |
| rem = (total_batch_size - (len_bucket % total_batch_size)) % total_batch_size |
| num_samples_per_bucket.append(len_bucket + rem) |
| return buckets, num_samples_per_bucket |
|
|
| def __iter__(self): |
| |
| g = torch.Generator() |
| g.manual_seed(self.epoch) |
| indices = [] |
| if self.shuffle: |
| for bucket in self.buckets: |
| indices.append(torch.randperm(len(bucket), generator=g).tolist()) |
| else: |
| for bucket in self.buckets: |
| indices.append(list(range(len(bucket)))) |
|
|
| batches = [] |
| for i in range(len(self.buckets)): |
| bucket = self.buckets[i] |
| len_bucket = len(bucket) |
| ids_bucket = indices[i] |
| num_samples_bucket = self.num_samples_per_bucket[i] |
|
|
| |
| rem = num_samples_bucket - len_bucket |
| ids_bucket = ids_bucket + ids_bucket * (rem // len_bucket) + ids_bucket[: (rem % len_bucket)] |
|
|
| |
| ids_bucket = ids_bucket[self.rank :: self.num_replicas] |
|
|
| |
| for j in range(len(ids_bucket) // self.batch_size): |
| batch = [bucket[idx] for idx in ids_bucket[j * self.batch_size : (j + 1) * self.batch_size]] |
| batches.append(batch) |
|
|
| if self.shuffle: |
| batch_ids = torch.randperm(len(batches), generator=g).tolist() |
| batches = [batches[i] for i in batch_ids] |
| self.batches = batches |
|
|
| assert len(self.batches) * self.batch_size == self.num_samples |
| return iter(self.batches) |
|
|
| def _bisect(self, x, lo=0, hi=None): |
| if hi is None: |
| hi = len(self.boundaries) - 1 |
|
|
| if hi > lo: |
| mid = (hi + lo) // 2 |
| if self.boundaries[mid] < x and x <= self.boundaries[mid + 1]: |
| return mid |
| elif x <= self.boundaries[mid]: |
| return self._bisect(x, lo, mid) |
| else: |
| return self._bisect(x, mid + 1, hi) |
| else: |
| return -1 |
|
|
| def __len__(self): |
| return self.num_samples // self.batch_size |
|
|
| def set_epoch(self, epoch: int) -> None: |
| """ |
| Sets the epoch for this sampler. When :attr:`shuffle=True`, this ensures all replicas |
| use a different random ordering for each epoch. Otherwise, the next iteration of this |
| sampler will yield the same ordering. |
| Args: |
| epoch (int): Epoch number. |
| """ |
| self.epoch = epoch |
|
|