mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
18 lines
263 B
Bash
18 lines
263 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname "$0")/tc-tests-utils.sh
|
|
|
|
aot_model=$1
|
|
|
|
download_material "${TASKCLUSTER_TMP_DIR}/ds" "${aot_model}"
|
|
|
|
export PATH=${TASKCLUSTER_TMP_DIR}/ds/:$PATH
|
|
|
|
check_tensorflow_version
|
|
|
|
run_all_inference_tests
|
|
|
|
run_multi_inference_tests
|