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.
16 lines
426 B
16 lines
426 B
#!/bin/bash
|
|
|
|
config_path=$1
|
|
train_output_path=$2
|
|
ckpt_name=$3
|
|
|
|
FLAGS_allocator_strategy=naive_best_fit \
|
|
FLAGS_fraction_of_gpu_memory_to_use=0.01 \
|
|
python3 ${BIN_DIR}/../../dygraph_to_static.py \
|
|
--type=voc \
|
|
--voc=hifigan_opencpop \
|
|
--voc_config=${config_path} \
|
|
--voc_ckpt=${train_output_path}/checkpoints/${ckpt_name} \
|
|
--voc_stat=dump/train/feats_stats.npy \
|
|
--inference_dir=exp/default/inference/
|