Tensorflow
元气少女wuqh
这个作者很懒,什么都没留下…
展开
-
The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available...
跑 tensorflow 官方教程时报warning:2017-06-08 22:36:18.809242: W tensorflow/core/platform/cpu_feature_guard.cc:45]The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are avail原创 2017-06-08 22:40:05 · 7423 阅读 · 2 评论 -
tensorflow官方教程 - MNIST for ML Beginers - 代码及注释
import osos.environ['TF_CPP_MIN_LOG_LEVEL']='2'import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets("MNIST_data/", one_hot=True)# I原创 2017-06-10 15:23:31 · 306 阅读 · 0 评论 -
tf.nn.conv2d 参数含义及结果维度
# for image: number of images x height x width x channels# for filter: height x width x channels x number of filtersinput = tf.Variable(tf.random_normal([1,3,3,5]))filter = tf.Variable(tf.random_n原创 2017-06-10 19:37:19 · 4229 阅读 · 0 评论 -
tensorflow 官网教程 - Deep MNIST for Experts - 代码及注解
import osos.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'import tensorflow as tf# Import dataset for experimentfrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets原创 2017-06-10 21:53:45 · 604 阅读 · 0 评论 -
No module named keras
我碰到的问题是:$ sudo pip install --upgrade keras然后在$~目录下输入Python>>> import keras报错 No module named keras解决方法:1. 查看keras的安装目录:$ cd /$ sudo find -name keras 我得到结果有/us原创 2017-07-28 00:45:25 · 45049 阅读 · 7 评论 -
深度学习tensorflow环境配置:Ubuntu 16.04 LTS + GTX 1080 Ti,2017年11月
写在前面我是在11月20日左右配置的深度学习环境……怎么说呢,这个时间其实有点尴尬,很多东西都出了新版本,但可能不同工具之间一些由版本引起的问题还没有解决,所以,碰到了很多坑,还好最后都找到了解决办法。本文主要分享一下我参考的一篇非常靠谱的教程:深度学习tensorflow环境搭建(二)和内容连续的深度学习tensorflow环境搭建(三),以及每一个步骤里面一些你不注意可能会踩的坑……原创 2017-11-21 11:02:34 · 1246 阅读 · 0 评论 -
Pycharm throws error :ImportError: No module named sklearn
本文以 Pycharm 找不到 “sklearn” 为例,说明一下在 Pycharm中报错 No module name * 时的一般解决方案我遇到的情况是: Pycharm中引用sklearn时代码下面出现了红线,运行程序时出现了上面的报错. 但在命令行输入$python 然后>> from sklearn.decomposition import PCA 时确不会报错.这说名自己的确是安原创 2017-12-09 18:46:38 · 4800 阅读 · 0 评论