DeepLearningExamples/Kaldi/SpeechRecognition/scripts/docker/run_client.sh
2020-11-04 12:37:46 +01:00

14 lines
240 B
Bash
Executable file

#!/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