
tensorflow
heqinglin8
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tensorflow的结构
#结构import tensorflow as tfimport numpy as np# create data 100-->1000增大数据量能增加精度x_data = np.random.rand(5).astype(np.float32)y_data = x_data*0.1 + 0.3#print(x_data,y_data)# 创建训练结构W原创 2017-03-01 00:19:39 · 548 阅读 · 0 评论 -
tensorflow 建造神经层
# View more python learning tutorial on my Youtube and Youku channel!!!# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg# Youku video tutorial: http://i.youku.co原创 2017-03-04 12:07:08 · 490 阅读 · 0 评论 -
tensorflow结果可视化
# View more python learning tutorial on my Youtube and Youku channel!!!# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg# Youku video tutorial: http://i.youku.co原创 2017-03-04 14:53:59 · 1523 阅读 · 0 评论 -
scope 命名方法
scope 能让你命名变量的时候轻松很多. 同时也会在 reusing variable 代码中常常见到. 所以今天我们会来讨论下 tensorflow 当中的两种定义 scope 的方式. 最后并附加一个 RNN 运用 reuse variable 的例子.tf.name_scope()tf.variable_scope()RNN应用例子tf.name_scope()在 Tens原创 2017-03-12 22:33:45 · 1163 阅读 · 0 评论