Tensorflow
shirleycyy
这个作者很懒,什么都没留下…
展开
-
tf.nn.conv2d
实验一:输入是一张4*4的图片,通道为1,卷积核为2*2的,卷积方式为valid,输出为3*3的图片import tensorflow as tf a=tf.constant([ [[1.0,2.0,3.0,4.0], [5.0,6.0,7.0,8.0], [8.0,7.0,6.0,5.0], [4.0,3.0,2.0,1.0]] ...原创 2018-03-19 11:10:24 · 227 阅读 · 0 评论 -
Tensorboard可视化步骤
原创 2018-04-15 10:25:51 · 884 阅读 · 0 评论 -
Tensorboard可视化实验
实验一:可视化之Graph对mnist_deep.py代码做适当修改,使用tensorboard查看CNN的整体运行框架图。def add_layer(inputs, in_size, out_size, activation_function=None): # add one more layer and return the output of this layer with ...原创 2018-04-15 10:25:24 · 405 阅读 · 0 评论 -
cifar10预处理及参数查看
原创 2018-04-15 11:11:42 · 2103 阅读 · 0 评论