mirror of https://github.com/coqui-ai/TTS.git
Use `coqui_tts` as the default run name
parent
9c86f1ac68
commit
18b2e41e5a
|
@ -1,6 +1,6 @@
|
|||
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__ = version
|
||||
|
|
|
@ -190,7 +190,7 @@ class BaseTrainingConfig(Coqpit):
|
|||
Name of the model that is used in the training.
|
||||
|
||||
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):
|
||||
Short description of the experiment.
|
||||
|
@ -272,7 +272,7 @@ class BaseTrainingConfig(Coqpit):
|
|||
"""
|
||||
|
||||
model: str = None
|
||||
run_name: str = ""
|
||||
run_name: str = "coqui_tts"
|
||||
run_description: str = ""
|
||||
# training params
|
||||
epochs: int = 10000
|
||||
|
|
Loading…
Reference in New Issue