
tensorflow
文章平均质量分 86
Image-MJ
这个作者很懒,什么都没留下…
展开
-
tensorflow实现迁移学习
谷歌提供的Inception-v3模型 地址:https://storage.googleapis.com/download.tensorflow.org/models/inception_dec_2015.zip数据集 地址:http://download.tensorflow.org/example_images/flower_photos.tgz代码实现:# -*- coding原创 2017-11-08 15:28:42 · 770 阅读 · 0 评论 -
安装TensorFlow:Win10下用Anaconda安装TensorFlow
安装tensorflow-cpu 可参考该博文:http://blog.youkuaiyun.com/u010858605/article/details/64128466安装tensorflow-gpu 可参考该博文: http://blog.youkuaiyun.com/hdd0411/article/details/71305931?locationNum=8&fps=1转载 2017-11-02 09:05:40 · 677 阅读 · 0 评论 -
python3中的np.load编码问题
由于在Python2 中的默认编码为ASCII,但是在Python3中的默认编码为UTF-8。所以在使用np.load(det.npy)的时候会出现错误提示:you may need to pass the encoding= option to numpy.load当遇到这种情况的时候,用np.load(det.npy,encoding转载 2017-11-16 19:31:37 · 2024 阅读 · 0 评论