1 Star 0 Fork 0

liuqiang123456789/auto_yolo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.sh 888 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Check tensorflow version.
MAX_VERSION=1.14
VALID_TF_VERSION=$(python -c "import tensorflow as tf; from pkg_resources import parse_version; print(parse_version(tf.VERSION) < parse_version('$MAX_VERSION'))")
if [ $VALID_TF_VERSION != "True" ]; then
TF_VERSION=$(python -c "import tensorflow as tf; print(tf.VERSION)")
echo "Version $TF_VERSION too new, must be < $MAX_VERSION"
fi
GIT_BRANCH=$(git branch | sed -n '/\* /s///p')
echo "*** git branch for auto_yolo is <"$GIT_BRANCH">."
# Install dps
echo "*** Installing dps on branch "$GIT_BRANCH
git clone https://github.com/e2crawfo/dps.git
cd dps
git checkout "$GIT_BRANCH"
echo "*** git branch for dps is <"$GIT_BRANCH">."
pip install -r requirements.txt
pip install -e .
# Install auto_yolo
cd ..
pip install -r requirements.txt
pip install -e .
cd auto_yolo/tf_ops/render_sprites/
make
cd ../resampler_edge
make
cd ../../..
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liuqiang123456789/auto_yolo.git
git@gitee.com:liuqiang123456789/auto_yolo.git
liuqiang123456789
auto_yolo
auto_yolo
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385