
tensorflow
u011144848
这个作者很懒,什么都没留下…
展开
-
keras简介(一)
kearskerase 主要模块原创 2019-05-19 11:48:29 · 567 阅读 · 0 评论 -
神经网络-Neural Network 简介
基本结构 输入层 --> 隐藏层 --> 输出层 
之前展示过只使用python、numpy构建简单的神经网络:前向传播、反向传播、链式法则求导等,有助于理解相关知识,但工程中是不可能这样做的。一些基本的概念1、常量 tf.constant```pythonimport tensorflow as tfa1 = tf.constant([1,2,3],tf.int32,name="a1")print(a1) # 打印:Tensor("...原创 2019-05-29 22:23:19 · 827 阅读 · 0 评论