mobilenetv3-tensorflow实战项目准备和代码调试
程序员文章站
2023-12-12 16:30:34
1、开源代码:TensorFLow:https://github.com/Bisonai/mobilenetv3-tensorflowtensorflow 1.15官方文档:https://tensorflow.google.cn/versions/r1.15/api_docs/python/tf/data/make_one_shot_iterator2、项目准备:项目克隆:git clonehttps://github.com/Bisonai/mobilenetv3-tensorflow....
1、开源代码:
- TensorFLow:https://github.com/Bisonai/mobilenetv3-tensorflow
- tensorflow 1.15官方文档:https://tensorflow.google.cn/versions/r1.15/api_docs/python/tf/data/make_one_shot_iterator
2、项目准备:
- 项目克隆:git clone https://github.com/Bisonai/mobilenetv3-tensorflow
- 环境搭建:
- 创建虚拟环境:conda create -n "mobilenetv3_Anne" python=3.6
- 环境激活:conda activate mobilenetv3_Anne
- gpu版tensorflow安装:pip --default-timeout=100 install tensorflow-gpu==1.15
- scikit-image安装:pip --default-timeout=100 install scikit-image
- tqdm安装:pip --default-timeout=100 install tqdm
- tensorflow_datasets安装:pip install tensorflow_datasets
- ipython安装:conda install ipyton
本文地址:https://blog.csdn.net/weixin_38192254/article/details/107068554