
深度学习
鸡汤本汤
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
“AttributeError: module 'tensorflow' has no attribute 'placeholder'”
import tensorflow.compat.v1 as tf tf.disable_eager_execution() #这两步是为了解决tensorflow2.0运行1.0的代码会报错误:“AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’” #以及tf.placeholder() is not compat...原创 2020-02-16 11:20:45 · 919 阅读 · 1 评论 -
动手学深度学习(第一次打卡)
文章目录线性回归softmax与分类模型多层感知机文本预处理语言模型循环神经网络 线性回归 softmax与分类模型 神经网络中,输出为多分类时,使用softmax,使用softmax后只是将值规范在0-1之间,并不会影响值之间的大小关系。 多层感知机 多层感知机(MLP,Multilayer Perceptron)也叫人工神经网络(ANN,Artificial Neural Network),除...原创 2020-02-14 16:16:26 · 317 阅读 · 0 评论