
深度学习
顾人玉
hello from the other side
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
下载mnist数据集过程中的错误Traceback (most recent call last)...解决方案
问题描述:当我们导入mnist数据集的时候,很多教程告诉我们这样下载就可以:#coding=utf-8import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets("MNIST_data/", one_hot=True)...原创 2019-04-26 00:09:03 · 65706 阅读 · 18 评论 -
.build_release/lib/libcaffe.so: undefined reference to `cv::imread(cv::String const&, int)'
to make sure opencv is installed properly$ pkg-config --modversion opencvMakefile文件中,找到LIBRARIES(在PYTHON_LIBRARIES := boost_python python2.7 前一行)LIBRARIES += glog gflags protobuf leveldb snapp...原创 2019-05-26 21:53:49 · 1848 阅读 · 2 评论 -
解决安装TensorFlow时:Cannot uninstall 'enum34'. It is a distutils installed project and thus we ca...
问题描述:在配置TensorFlow和keras的过程中,首先是版本问题,本文选择的是TensorFlow1.5和keras2.2.4和python2.7首先卸载之前安装的TensorFlow,然后重新安装1.5版本的TensorFlow: pip install tensorflow==1.5如图所示:在安装python的路径下找到Markdown-2.6.6.egg-info文件,...原创 2019-04-17 22:13:30 · 1891 阅读 · 1 评论 -
ubuntu系统下pycharm软件内解决ImportError:No module named 'tensorflow'
ubuntu系统下pycharm软件内tensorflow无法使用;解决问题ImportError:No module named ‘tensorflow’问题现象如图所示:关于这个问题在知乎,csdn和github上都有相关答案,竟然都不好使;我也是醉了。先给答案:首先,要保证在命令行下,可以使用tensorflow;具体内容可以参考我上一篇文章;接下来在pycharm中进入fil...原创 2019-04-16 16:53:13 · 1281 阅读 · 0 评论 -
ubuntu18.04 tensorflow GPU 配置教程
配置caffe的时候安装的是CUDA10.0,cudnn7.4;查询自己的安装版本号的方法为:cat /usr/local/cuda/version.txtcat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2如下图为官网给出的配置对照表:需要翻墙访问官网这里本文选择安装1.14.0(注意申请最高权限);最后检测是否...原创 2019-06-27 20:29:50 · 972 阅读 · 0 评论