From b9a534af614751c84f86ecae38af068858cd63d5 Mon Sep 17 00:00:00 2001 From: James Betker Date: Mon, 25 Apr 2022 20:07:07 -0600 Subject: [PATCH] move voices --- do_tts.py | 2 +- read.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/do_tts.py b/do_tts.py index f7c7477..fa0347e 100644 --- a/do_tts.py +++ b/do_tts.py @@ -10,7 +10,7 @@ if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--text', type=str, help='Text to speak.', default="I am a language model that has learned to speak.") parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) ' - 'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='patrick_stewart') + 'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='pat') parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard') parser.add_argument('--voice_diversity_intelligibility_slider', type=float, help='How to balance vocal diversity with the quality/intelligibility of the spoken text. 0 means highly diverse voice (not recommended), 1 means maximize intellibility', diff --git a/read.py b/read.py index 9506e97..9e4e04c 100644 --- a/read.py +++ b/read.py @@ -32,7 +32,7 @@ if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--textfile', type=str, help='A file containing the text to read.', default="data/riding_hood.txt") parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) ' - 'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='patrick_stewart') + 'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='pat') parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='results/longform/') parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard') parser.add_argument('--regenerate', type=str, help='Comma-separated list of clip numbers to re-generate, or nothing.', default=None)