wasm-micro-runtime/core/deps/install_tensorflow.sh

12 lines
215 B
Bash
Executable File

#!/bin/sh
DEPS_ROOT=$(cd "$(dirname "$0")/" && pwd)
cd ${DEPS_ROOT}
echo "Downloading tensorflow in ${PWD}..."
git clone https://github.com/tensorflow/tensorflow.git tensorflow-src \
--branch v2.11.1
exit 0