DeepLearningExamples/Kaldi/SpeechRecognition/scripts/docker/run_client.sh
2021-10-12 17:45:31 -07:00

14 lines
228 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
kaldi-asr-parallel-client $@
echo "Computing WER..."
/workspace/scripts/compute_wer.sh
rm -rf $results_dir