mirror of https://github.com/coqui-ai/TTS.git
Remove useless config parameter
This commit is contained in:
parent
711a46506f
commit
3a7feadba4
|
@ -28,7 +28,7 @@ class BaseEncoderConfig(BaseTrainingConfig):
|
||||||
audio_augmentation: Dict = field(default_factory=lambda: {})
|
audio_augmentation: Dict = field(default_factory=lambda: {})
|
||||||
|
|
||||||
# training params
|
# training params
|
||||||
max_train_step: int = 1000000 # end training when number of training steps reaches this value.
|
epochs: int = 10000
|
||||||
loss: str = "angleproto"
|
loss: str = "angleproto"
|
||||||
grad_clip: float = 3.0
|
grad_clip: float = 3.0
|
||||||
lr: float = 0.0001
|
lr: float = 0.0001
|
||||||
|
@ -39,7 +39,6 @@ class BaseEncoderConfig(BaseTrainingConfig):
|
||||||
# logging params
|
# logging params
|
||||||
tb_model_param_stats: bool = False
|
tb_model_param_stats: bool = False
|
||||||
steps_plot_stats: int = 10
|
steps_plot_stats: int = 10
|
||||||
epochs: int = 10000
|
|
||||||
save_step: int = 1000
|
save_step: int = 1000
|
||||||
print_step: int = 20
|
print_step: int = 20
|
||||||
run_eval: bool = False
|
run_eval: bool = False
|
||||||
|
|
Loading…
Reference in New Issue