From 3eb00e8d93dac5a08a8ac44e8bba9d16ee0f5452 Mon Sep 17 00:00:00 2001 From: Thorsten Mueller Date: Fri, 29 Jan 2021 17:23:38 +0100 Subject: [PATCH] Set out_path to be required param. --- TTS/bin/compute_statistics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TTS/bin/compute_statistics.py b/TTS/bin/compute_statistics.py index 7642f86b..5c1796ea 100755 --- a/TTS/bin/compute_statistics.py +++ b/TTS/bin/compute_statistics.py @@ -19,8 +19,8 @@ def main(): description="Compute mean and variance of spectrogtram features.") parser.add_argument("--config_path", type=str, required=True, help="TTS config file path to define audio processin parameters.") - parser.add_argument("--out_path", default=None, type=str, - help="directory to save the output file.") + parser.add_argument("--out_path", type=str, required=True + help="save path (directory and filename).") args = parser.parse_args() # load config