Spaces:
Runtime error
Runtime error
Upload synthesizer_preprocess_embeds.py with huggingface_hub
Browse files
synthesizer_preprocess_embeds.py
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from synthesizer.preprocess import create_embeddings
|
2 |
+
from utils.argutils import print_args
|
3 |
+
from pathlib import Path
|
4 |
+
import argparse
|
5 |
+
|
6 |
+
|
7 |
+
if __name__ == "__main__":
|
8 |
+
parser = argparse.ArgumentParser(
|
9 |
+
description="Creates embeddings for the synthesizer from the LibriSpeech utterances.",
|
10 |
+
formatter_class=argparse.ArgumentDefaultsHelpFormatter
|
11 |
+
)
|
12 |
+
parser.add_argument("synthesizer_root", type=Path, help=\
|
13 |
+
"Path to the synthesizer training data that contains the audios and the train.txt file. "
|
14 |
+
"If you let everything as default, it should be <datasets_root>/SV2TTS/synthesizer/.")
|
15 |
+
parser.add_argument("-e", "--encoder_model_fpath", type=Path,
|
16 |
+
default="encoder/saved_models/pretrained.pt", help=\
|
17 |
+
"Path your trained encoder model.")
|
18 |
+
parser.add_argument("-n", "--n_processes", type=int, default=4, help= \
|
19 |
+
"Number of parallel processes. An encoder is created for each, so you may need to lower "
|
20 |
+
"this value on GPUs with low memory. Set it to 1 if CUDA is unhappy.")
|
21 |
+
args = parser.parse_args()
|
22 |
+
|
23 |
+
# Preprocess the dataset
|
24 |
+
print_args(args, parser)
|
25 |
+
create_embeddings(**vars(args))
|