摘要: ''' Created on Apr 21, 2017 @author: P0079482 ''' #如何通过tf.variable_scope函数来控制tf.ger_variable函数获取已经创建过的变量 #在名字为foo的命名空间内创建名字为v的变量 import tensorflow as tf with tf.variable_scope("foo"): v = tf.get... 阅读全文
posted @ 2017-04-23 10:29 香港胖仔 阅读(7270) 评论(0) 推荐(0) 编辑
摘要: 卷积层是神经网络中用于对图像提取特征的结构,有点像高斯滤波去对图像进行平滑处理 不过这里的卷积层要提取的是图像的特征,而且提取图像的算子的值是提前没有确定的 需要通过神经网络的训练来给计算出来 阅读全文
posted @ 2017-04-23 09:46 香港胖仔 阅读(1471) 评论(0) 推荐(0) 编辑
摘要: ''' Created on 2017年4月22日 @author: weizhen ''' import os import tensorflow as tf import numpy as np from tensorflow.examples.tutorials.mnist import in 阅读全文
posted @ 2017-04-23 09:41 香港胖仔 阅读(3542) 评论(0) 推荐(0) 编辑