-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMLProject
20 lines (18 loc) · 848 Bytes
/
MLProject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: PeeWeeTTS
conda_env: conda.yaml
entry_points:
train_encoder:
parameters:
config_path: { type: string, default: "config/speaker_recog_encoder_dev.yml" }
save_model: { type: string, default: "False" }
command: "python train_encoder.py --config-path {config_path} --save-model {save_model}"
train_tacotron_2:
parameters:
config_path: { type: string, default: "config/tacotron_2_dev.yml" }
save_model: { type: string, default: "False" }
command: "python train_tacotron_2.py --config-path {config_path} --save-model {save_model}"
train_tt2_vendor:
parameters:
config_path: { type: string, default: "vendor/tacotron_2/tt2_vendor_dev.yml" }
save_model: { type: string, default: "False" }
command: "python train_tt2_vendor.py --config-path {config_path} --save-model {save_model}"