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.
|
#!/bin/bash
|
|
|
|
audio_file=$1
|
|
ckpt_dir=$2
|
|
feat_backend=$3
|
|
|
|
python3 ${BIN_DIR}/predict.py \
|
|
--wav ${audio_file} \
|
|
--feat_backend ${feat_backend} \
|
|
--top_k 10 \
|
|
--checkpoint ${ckpt_dir}/model.pdparams
|