Use `coqui_tts` as the default run name

This commit is contained in:
Eren Gölge 2021-08-30 12:56:47 +00:00
parent 9c86f1ac68
commit 18b2e41e5a
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import os import os
with open(os.path.join(os.path.dirname(__file__), "VERSION"), 'r', encoding='utf-8') as f: with open(os.path.join(os.path.dirname(__file__), "VERSION"), "r", encoding="utf-8") as f:
version = f.read().strip() version = f.read().strip()
__version__ = version __version__ = version

View File

@ -190,7 +190,7 @@ class BaseTrainingConfig(Coqpit):
Name of the model that is used in the training. Name of the model that is used in the training.
run_name (str): run_name (str):
Name of the experiment. This prefixes the output folder name. Name of the experiment. This prefixes the output folder name. Defaults to `coqui_tts`.
run_description (str): run_description (str):
Short description of the experiment. Short description of the experiment.
@ -272,7 +272,7 @@ class BaseTrainingConfig(Coqpit):
""" """
model: str = None model: str = None
run_name: str = "" run_name: str = "coqui_tts"
run_description: str = "" run_description: str = ""
# training params # training params
epochs: int = 10000 epochs: int = 10000