зеркало из https://github.com/mozilla/DeepSpeech.git
30 строки
658 B
Bash
30 строки
658 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname "$0")/tc-tests-utils.sh
|
|
|
|
extract_python_versions "$1" "pyver" "pyver_pkg" "py_unicode_type" "pyconf" "pyalias"
|
|
|
|
ds=$2
|
|
|
|
mkdir -p ${TASKCLUSTER_ARTIFACTS} || true
|
|
mkdir -p /tmp/train || true
|
|
mkdir -p /tmp/train_tflite || true
|
|
|
|
virtualenv_activate "${pyalias}" "deepspeech"
|
|
|
|
set -o pipefail
|
|
pip install --upgrade pip==19.3.1 setuptools==45.0.0 wheel==0.33.6 | cat
|
|
pushd ${HOME}/DeepSpeech/ds
|
|
pip install --upgrade . | cat
|
|
popd
|
|
set +o pipefail
|
|
|
|
pushd ${HOME}/DeepSpeech/ds/
|
|
time ./bin/run-tc-sample_augmentations.sh
|
|
time ./bin/run-tc-graph_augmentations.sh
|
|
popd
|
|
|
|
virtualenv_deactivate "${pyalias}" "deepspeech"
|