Tensorflow学习总结(1):CNN

简介:

        CNN(卷积神经网络)是一种特殊的对图像识别的方式,属于非常有效的带有前向反馈的网络。CNN主要用于对二维图像的识别,它的网络结构对平移、比例放缩、倾斜或其他的变形具有高度不变性。因为,每层关注的特征不一样,贴近原图的,关注像素级别的,而经过多次特征提取后,关联型、序列型或结构化等类型的特征(如拓扑结构)被提取出来,其一致性与事物本身的一致性就比较接近了。现在,卷积网络主要用于图像识别领域,也可以用于人脸识别、文字识别等方向。

1、tf.reshape([-1,28,28,1])


由图中可以看出-1为缺省值。


 2、tf.nn.conv2d(x_image,weight,stride,padding)
  strdie:    stride=[1,x_movement,y_movement,1], stride[0],stride[3] must be 1   
  padding:    有两个值'SAME' 和'VALID' 。'SAME' :表示用0填充,为了使输入输出是同一大小。

 

3、长度为M和N的两个序列卷积后得到序列长度为M+N-1。

4、池化:池化的作用等价于采样,为了后面的全连接的时候减少连接数。

 池化分为两种,一种是最大池化(max_pool),在选中区域中找最大的值作为最后的值。另一种是平均池化,把选中区域中的值作为抽样后的值。池化原因是,为了后面的全连接的时候减少连接数。
    
    
  1. # create pooling ,in order to reduce the loss of info when cutting the image
  2. def max_pool_2x2(x):
  3. return tf.nn.max_pool(x, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME')

tf.nn.max_pool(value, ksize, strides, padding, name=None)

参数是四个,和卷积很类似:

第一个参数value:需要池化的输入,一般池化层接在卷积层后面,所以输入通常是feature map,依然是[batch, height, width, channels]这样的shape

第二个参数ksize:池化窗口的大小,取一个四维向量,一般是[1, height, width, 1],因为我们不想在batch和channels上做池化,所以这两个维度设为了1

第三个参数strides:和卷积类似,窗口在每一个维度上滑动的步长,一般也是[1, stride,stride, 1]

第四个参数padding:和卷积类似,可以取'VALID' 或者'SAME'

返回一个Tensor,类型不变,shape仍然是[batch, height, width, channels]这种形式


5、tf.nn.relu()激活函数:目的是使数据非线性
6、tf.nn.dropout(input, keep_prob)
目的是防止过拟合,在输出层之前应用dropout技术(即丢弃某些神经元的输出结果)。Dropout在训练过程中使用,而在测试中不使用。

7、reduce_mean()函数
         求最大值 tf.reduce_max(input_tensor, reduction_indices=None, keep_dims=False, name=None)

求平均值tf.reduce_mean(input_tensor, reduction_indices=None, keep_dims=False, name=None)

参数(1)input_tensor:待求值的tensor。

参数(2)reduction_indices:在哪一维上求解。

参数(3)(4)可忽略

举例说明:

# 'x' is [[1., 2.]
#         [3., 4.]]
x是一个2维数组,分别调用reduce_*函数如下:

首先求平均值,

tf.reduce_mean(x) ==> 2.5 #如果不指定第二个参数,那么就在所有的元素中取平均值
tf.reduce_mean(x, 0) ==> [2.,  3.] #指定第二个参数为0,则第一维的元素取平均值,即每一列求平均值
tf.reduce_mean(x, 1) ==> [1.5,  3.5] #指定第二个参数为1,则第二维的元素取平均值,即每一行求平均值
同理,还可用tf.reduce_max()求最大值。





附:代码和分析


 
    
    
  1. import tensorflow as tf
  2. from tensorflow.examples.tutorials.mnist import input_data
  3. # 60000行的训练数据集(mnist.train)和10000行的测试数据集(mnist.test)
  4. # (每一行包含28*28=784个像素点)
  5. # Import data
  6. mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
  7. # init weight
  8. def weight_variable(shape):
  9. initial = tf.truncated_normal(shape, stddev=0.01)
  10. return tf.Variable(initial)
  11. # init bias
  12. def bias_variable(shape):
  13. initial = tf.constant(0.1, shape=shape)
  14. return tf.Variable(initial)
  15. # create CNN layer
  16. def conv2d(x, W):
  17. # stride [1,x_movement,y_movement,1],stride[0] and stride[3] must be 1
  18. return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME') ### ???
  19. # create pooling ,in order to reduce the loss of info when cutting the image
  20. def max_pool_2x2(x):
  21. return tf.nn.max_pool(x, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME')
  22. # def compute_accuracy
  23. def comput_accuracy(v_xs, v_ys):
  24. global prediction
  25. y_pre = sess.run(prediction, feed_dict={xs: v_xs, keep_prob: 1})
  26. correct_pre = tf.equal(tf.argmax(y_pre, 1), tf.argmax(v_ys, 1))
  27. accuracy = tf.reduce_mean(tf.cast(correct_pre, tf.float32))
  28. result = sess.run(accuracy, feed_dict={xs: v_xs, ys: v_ys, keep_prob: 1})
  29. return result
  30. # define placeholder for inputs to network
  31. xs = tf.placeholder(tf.float32, [None, 784]) # 28x28
  32. ys = tf.placeholder(tf.float32, [None, 10])
  33. keep_prob = tf.placeholder(tf.float32)
  34. x_image = tf.reshape(xs, [-1, 28, 28, 1])
  35. # print(x_image.shape) #[n_sample.28,28,1]
  36. # conv1 layer
  37. W_conv1 = weight_variable([5, 5, 1, 32]) # patch 5x5,in size 1,out size 32
  38. b_conv1 = bias_variable([32])
  39. hide_conv1 = tf.nn.relu(conv2d(x_image, W_conv1) + b_conv1)
  40. # relu: let data nonlinear , output size 28x28x32
  41. hide_pool1 = max_pool_2x2(hide_conv1) # output size 14x14x32
  42. # conv2 layer
  43. W_conv2 = weight_variable([5, 5, 32, 64]) # patch 5x5,in size 32,out size 64
  44. b_conv2 = bias_variable([64])
  45. hide_conv2 = tf.nn.relu(conv2d(hide_pool1, W_conv2) + b_conv2) # relu: let data nonlinear , output size 14x14x64
  46. hide_pool2 = max_pool_2x2(hide_conv2) # output size 7x7x64
  47. # func1 layer
  48. W_fc1 = weight_variable([7*7*64, 1024]) # 全连接
  49. b_fc1 = bias_variable([1024])
  50. # [n_samples,7,7,64] ->> [n_samples,7*7*64]
  51. h_pool2_flat = tf.reshape(hide_pool2, [-1, 7*7*64])            # 转化为1维
  52. h_fc1 = tf.nn.relu(tf.matmul(h_pool2_flat, W_fc1) + b_fc1)       # 点积
  53. h_fc1_drop = tf.nn.dropout(h_fc1, keep_prob)
  54. # func2 layer
  55. W_fc2 = weight_variable([1024, 10])
  56. b_fc2 = bias_variable([10])
  57. prediction = tf.nn.softmax(tf.matmul(h_fc1_drop, W_fc2) + b_fc2)
  58. # the error between the prediction and real data
  59. cross_entropy = tf.reduce_mean(-tf.reduce_sum(ys*tf.log(prediction), reduction_indices=[1]))
  60. train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)
  61. # create session
  62. with tf.Session() as sess:
  63. sess.run(tf.global_variables_initializer())
  64. for i in range(1000):
  65. batch_xs, batch_ys = mnist.train.next_batch(100)
  66. sess.run(train_step, feed_dict={xs: batch_xs, ys: batch_ys, keep_prob: 0.5})
  67. if i % 40 == 0:
  68. print(comput_accuracy(mnist.test.images, mnist.test.labels))
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值