mirror of
https://github.com/coqui-ai/TTS.git
synced 2025-12-25 12:49:29 +01:00
Use coqui_tts as the default run name
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user