You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
248 B
10 lines
248 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
train_output_path=$1
|
||
|
|
||
|
python3 ${BIN_DIR}/inference.py \
|
||
|
--inference-dir=${train_output_path}/inference \
|
||
|
--text=${BIN_DIR}/../sentences.txt \
|
||
|
--output-dir=${train_output_path}/pd_infer_out \
|
||
|
--phones-dict=dump/phone_id_map.txt
|