26 lines
412 B
Bash
Executable File
26 lines
412 B
Bash
Executable File
#!/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}"
|
|
|
|
model_source=${STT_TEST_MODEL//.pb/.tflite}
|
|
model_name=$(basename "${model_source}")
|
|
model_name_mmap=$(basename "${model_source}")
|
|
|
|
download_data
|
|
|
|
export_py_bin_path
|
|
|
|
which stt
|
|
stt --version
|
|
|
|
run_all_inference_tests
|
|
|
|
run_hotword_tests
|