深度学习
qq_42694575
这个作者很懒,什么都没留下…
展开
-
TypeError: softmax() got an unexpected keyword argument 'axis'
问题原因:keras2.0的版本的softmax()没有axis这个参数了。所以把版本降到2.1就可以了,运行代码。pip install keras==2.1原创 2018-07-24 10:02:41 · 246 阅读 · 0 评论 -
AttributeError:'Session' object has no attribute 'list_devices'
新版本的keras不支持这个功能,最简单的方法就是把keras的版本降到2.0.7。pip install keras==2.0.7原创 2018-07-24 15:19:26 · 4568 阅读 · 0 评论 -
Tensorflow 警告(The TensorFlow library wasn't compiled to use SSE instructions)
警告指的是,您的CPU支持SSE指令,这允许在硬件并行操作中速度有所提高。启用这些操作是编译时操作(即使用SSE,您需要从源代码中构建库,从而启用特定的SSE版本),在这种情况下,您可以查看这个问题。如果不想要这个警告,就在代码里加上下面三行的语句。import osos.environ['TF_CPP_MIN_LOG_LEVEL']='2'import tensorflow as t...原创 2018-07-24 16:16:58 · 2529 阅读 · 1 评论 -
tensorboard的使用
参考资料:https://github.com/MorvanZhou/Tensorflow-Tutorial首先将代码进行运行import tensorflow as tfimport numpy as npimport matplotlib.pyplot as plt####添加神经层函数def add_layer(inputs,in_size,out_size,n_layer...原创 2018-07-14 16:49:26 · 185 阅读 · 0 评论