зеркало из https://github.com/mozilla/DeepSpeech.git
20 строки
274 B
Bash
20 строки
274 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
source $(dirname "$0")/all-vars.sh
|
||
|
source $(dirname "$0")/all-utils.sh
|
||
|
source $(dirname "$0")/asserts.sh
|
||
|
|
||
|
bitrate=$1
|
||
|
set_ldc_sample_filename "${bitrate}"
|
||
|
|
||
|
download_data
|
||
|
|
||
|
which deepspeech
|
||
|
deepspeech --version
|
||
|
|
||
|
run_all_inference_tests
|
||
|
|
||
|
run_hotword_tests
|