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

14 lines
228 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
2021-10-13 02:45:31 +02:00
kaldi-asr-parallel-client $@
2020-11-04 12:37:46 +01:00
echo "Computing WER..."
/workspace/scripts/compute_wer.sh
rm -rf $results_dir