Fix default output path
Browse files- tortoise/do_tts.py +1 -1
- tortoise/read.py +1 -1
tortoise/do_tts.py
CHANGED
|
@@ -15,7 +15,7 @@ if __name__ == '__main__':
|
|
| 15 |
parser.add_argument('--voice_diversity_intelligibility_slider', type=float,
|
| 16 |
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',
|
| 17 |
default=.5)
|
| 18 |
-
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='
|
| 19 |
parser.add_argument('--model_dir', type=str, help='Where to find pretrained model checkpoints. Tortoise automatically downloads these to .models, so this'
|
| 20 |
'should only be specified if you have custom checkpoints.', default='.models')
|
| 21 |
args = parser.parse_args()
|
|
|
|
| 15 |
parser.add_argument('--voice_diversity_intelligibility_slider', type=float,
|
| 16 |
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',
|
| 17 |
default=.5)
|
| 18 |
+
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='results/')
|
| 19 |
parser.add_argument('--model_dir', type=str, help='Where to find pretrained model checkpoints. Tortoise automatically downloads these to .models, so this'
|
| 20 |
'should only be specified if you have custom checkpoints.', default='.models')
|
| 21 |
args = parser.parse_args()
|
tortoise/read.py
CHANGED
|
@@ -31,7 +31,7 @@ if __name__ == '__main__':
|
|
| 31 |
parser.add_argument('--textfile', type=str, help='A file containing the text to read.', default="tortoise/data/riding_hood.txt")
|
| 32 |
parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) '
|
| 33 |
'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='pat')
|
| 34 |
-
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='
|
| 35 |
parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard')
|
| 36 |
parser.add_argument('--regenerate', type=str, help='Comma-separated list of clip numbers to re-generate, or nothing.', default=None)
|
| 37 |
parser.add_argument('--voice_diversity_intelligibility_slider', type=float,
|
|
|
|
| 31 |
parser.add_argument('--textfile', type=str, help='A file containing the text to read.', default="tortoise/data/riding_hood.txt")
|
| 32 |
parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) '
|
| 33 |
'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='pat')
|
| 34 |
+
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='results/longform/')
|
| 35 |
parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard')
|
| 36 |
parser.add_argument('--regenerate', type=str, help='Comma-separated list of clip numbers to re-generate, or nothing.', default=None)
|
| 37 |
parser.add_argument('--voice_diversity_intelligibility_slider', type=float,
|