mirror of https://github.com/coqui-ai/TTS.git
Place model name to the beginning of the generated output folder name
This commit is contained in:
parent
c245cb4f75
commit
22664a52c8
|
@ -53,7 +53,7 @@ def create_experiment_folder(root_path, model_name, debug):
|
||||||
else:
|
else:
|
||||||
commit_hash = get_commit_hash()
|
commit_hash = get_commit_hash()
|
||||||
output_folder = os.path.join(
|
output_folder = os.path.join(
|
||||||
root_path, date_str + '-' + model_name + '-' + commit_hash)
|
root_path, model_name + '-' + date_str + '-' + commit_hash)
|
||||||
os.makedirs(output_folder, exist_ok=True)
|
os.makedirs(output_folder, exist_ok=True)
|
||||||
print(" > Experiment folder: {}".format(output_folder))
|
print(" > Experiment folder: {}".format(output_folder))
|
||||||
return output_folder
|
return output_folder
|
||||||
|
|
Loading…
Reference in New Issue