DeepLearningExamples/Kaldi/SpeechRecognition/scripts/docker/run_client.sh

14 lines
240 B
Bash
Raw Normal View History

2020-11-04 12:37:46 +01:00
#!/bin/bash
set -e
results_dir=/data/results
if [ -d "$results_dir" ]
then
rm -rf $results_dir
fi
mkdir $results_dir
install/bin/kaldi_asr_parallel_client $@
echo "Computing WER..."
/workspace/scripts/compute_wer.sh
rm -rf $results_dir