Tensorflow实例:(卷积神经网络)LeNet-5模型

来源:互联网 发布:mac服务器域名 编辑:程序博客网 时间:2024/06/10 14:48

通过卷积层、池化层等结构的任意组合得到的神经网络有无限多种,怎样的神经网络更有可能解决真实的图像处理问题?本文通过LeNet-5模型,将给出卷积神经网络结构设计的一个通用模式。

LeNet-5模型

LeNet-5模型是Yann LeCun教授于1998年在论文Gradient-based learning applied to document recognition中提出的,它是第一个成功应用于数字识别问题的卷积神经网络。LeNet-5模型一共有7层,下图展示了LeNet-5模型的架构:
这里写图片描述

第一层,卷积层

这一层的输入就是原始的图像像素32*32*1。第一个卷积层过滤器尺寸为5*5,深度为6,不使用全0填充,步长为1。所以这一层的输出:28*28*6,卷积层共有5*5*1*6+6=156个参数

第二层,池化层

这一层的输入为第一层的输出,是一个28*28*6的节点矩阵。本层采用的过滤器大小为2*2,长和宽的步长均为2,所以本层的输出矩阵大小为14*14*6。

第三层,卷积层

本层的输入矩阵大小为14*14*6,使用的过滤器大小为5*5,深度为16.本层不使用全0填充,步长为1。本层的输出矩阵大小为10*10*16。本层有5*5*6*16+16=2416个参数。

第四层,池化层

本层的输入矩阵大小10*10*16。本层采用的过滤器大小为2*2,长和宽的步长均为2,所以本层的输出矩阵大小为5*5*16。

第五层,全连接层

本层的输入矩阵大小为5*5*16,在LeNet-5论文中将这一层成为卷积层,但是因为过滤器的大小就是5*5,所以和全连接层没有区别。如果将5*5*16矩阵中的节点拉成一个向量,那么这一层和全连接层就一样了。本层的输出节点个数为120,总共有5*5*16*120+120=48120个参数。

第六层,全连接层

本层的输入节点个数为120个,输出节点个数为84个,总共参数为120*84+84=10164个。

第七层,全连接层

本层的输入节点个数为84个,输出节点个数为10个,总共参数为84*10+10=850

Tensorflow实现LeNet-5

下面给出一个Tensorflow的程序来实现一个类似LeNet-5模型的卷积神经网络来解决MNIST数字识别问题。

LeNet_inference.py

# _*_ coding: utf-8 _*_import tensorflow as tf# 配置神经网络的参数INPUT_NODE = 784OUTPUT_NODE = 10IMAGE_SIZE = 28NUM_CHANNELS = 1NUM_LABELS = 10# 第一个卷积层的尺寸和深度CONV1_DEEP = 32CONV1_SIZE = 5# 第二个卷积层的尺寸和深度CONV2_DEEP = 64CONV2_SIZE = 5# 全连接层的节点个数FC_SIZE = 512# 定义卷积神经网络的前向传播过程。这里添加了一个新的参数train,用于区别训练过程和测试过程。在这个程序中将用到dropout方法# dropout可以进一步提升模型可靠性并防止过拟合(dropout过程只在训练时使用)def inference(input_tensor, train, regularizer):    with tf.variable_scope('layer1-conv1'):        conv1_weights = tf.get_variable('weight', [CONV1_SIZE, CONV1_SIZE, NUM_CHANNELS, CONV1_DEEP],                                        initializer=tf.truncated_normal_initializer(stddev=0.1))        conv1_biases = tf.get_variable('bias', [CONV1_DEEP],                                       initializer=tf.constant_initializer(0.0))        conv1 = tf.nn.conv2d(input_tensor, conv1_weights, strides=[1, 1, 1, 1], padding='SAME')        relu1 = tf.nn.relu(tf.nn.bias_add(conv1, conv1_biases))    with tf.name_scope('layer2-pool1'):        pool1 = tf.nn.max_pool(relu1, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME')    with tf.variable_scope('layer3-conv2'):        conv2_weights = tf.get_variable('weight', [CONV2_SIZE, CONV2_SIZE, CONV1_DEEP, CONV2_DEEP],                                        initializer=tf.truncated_normal_initializer(stddev=0.1))        conv2_biases = tf.get_variable('bias', [CONV2_DEEP],                                       initializer=tf.constant_initializer(0.0))        conv2 = tf.nn.conv2d(pool1,conv2_weights, strides=[1, 1, 1, 1], padding='SAME')        relu2 = tf.nn.relu(tf.nn.bias_add(conv2, conv2_biases))    with tf.name_scope('layer4-pool2'):        pool2 = tf.nn.max_pool(relu2, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME')    pool2_shape = pool2.get_shape().as_list()    nodes = pool2_shape[1] * pool2_shape[2] * pool2_shape[3]    reshaped = tf.reshape(pool2, [pool2_shape[0], nodes])    with tf.variable_scope('layer5-fc1'):        fc1_weights = tf.get_variable('weight', [nodes, FC_SIZE],                                      initializer=tf.truncated_normal_initializer(stddev=0.1))        if regularizer != None:            tf.add_to_collection('losses', regularizer(fc1_weights))        fc1_biases = tf.get_variable('bias', [FC_SIZE],                                     initializer=tf.constant_initializer(0.0))        fc1 = tf.nn.relu(tf.matmul(reshaped, fc1_weights) + fc1_biases)        if train:            fc1 = tf.nn.dropout(fc1, 0.5)    with tf.variable_scope('layer6-fc2'):        fc2_weights = tf.get_variable('weight', [FC_SIZE, NUM_LABELS],                                      initializer=tf.truncated_normal_initializer(stddev=0.1))        if regularizer != None:            tf.add_to_collection('losses', regularizer(fc2_weights))        fc2_biases = tf.get_variable('bias', [NUM_LABELS],                                     initializer=tf.constant_initializer(0.0))        logit = tf.matmul(fc1, fc2_weights) + fc2_biases    return logit

LeNet_train.py

# _*_ coding: utf-8 _*_import osimport tensorflow as tfimport numpy as npfrom tensorflow.examples.tutorials.mnist import input_data# 加载mnist_inference.py中定义的常量和前向传播的函数import LeNet_inference# 配置神经网络的参数BATCH_SIZE = 100LEARNING_RATE_BASE = 0.8LEARNING_RATE_DECAY = 0.99REGULARAZTION_RATE = 0.0001TRAIN_STEPS = 30000MOVING_AVERAGE_DECAY = 0.99MODEL_SAVE_PATH = "./model/"MODEL_NAME = "model3.ckpt"def train(mnist):    x = tf.placeholder(tf.float32, [BATCH_SIZE, LeNet_inference.IMAGE_SIZE,                                    LeNet_inference.IMAGE_SIZE,                                    LeNet_inference.NUM_CHANNELS], name='x-input')    y_ = tf.placeholder(tf.float32, [None, LeNet_inference.OUTPUT_NODE], name='y-input')    regularizer = tf.contrib.layers.l2_regularizer(REGULARAZTION_RATE)    y = LeNet_inference.inference(x, train, regularizer)    global_step = tf.Variable(0, trainable=False)    variable_average = tf.train.ExponentialMovingAverage(MOVING_AVERAGE_DECAY, global_step)    variable_average_op = variable_average.apply(        tf.trainable_variables())    cross_entropy = tf.nn.sparse_softmax_cross_entropy_with_logits(labels=tf.argmax(y_, 1), logits=y)    cross_entropy_mean = tf.reduce_mean(cross_entropy)    loss = cross_entropy_mean + tf.add_n(tf.get_collection('losses'))    learning_rate = tf.train.exponential_decay(LEARNING_RATE_BASE,                                               global_step=global_step, decay_steps=mnist.train.num_examples / BATCH_SIZE,                                               decay_rate=LEARNING_RATE_DECAY)    train_step = tf.train.GradientDescentOptimizer(learning_rate).minimize(loss, global_step=global_step)    with tf.control_dependencies([train_step, variable_average_op]):        train_op = tf.no_op(name='train')    saver = tf.train.Saver()    with tf.Session() as sess:        tf.global_variables_initializer().run()        for i in range(TRAIN_STEPS):            xs, ys = mnist.train.next_batch(BATCH_SIZE)            xs = np.reshape(xs, [BATCH_SIZE, LeNet_inference.IMAGE_SIZE,                                    LeNet_inference.IMAGE_SIZE,                                    LeNet_inference.NUM_CHANNELS])            _, loss_value, step = sess.run([train_op, loss, global_step], feed_dict={x: xs, y_: ys})            if i % 1000 == 0:                print("After %d training steps, loss on training"                      "batch is %g" % (step, loss_value))                saver.save(sess, os.path.join(MODEL_SAVE_PATH, MODEL_NAME), global_step=global_step)def main(argv=None):    mnist = input_data.read_data_sets("E:\科研\TensorFlow教程\MNIST_data", one_hot=True)    train(mnist)if __name__ == '__main__':    tf.app.run()

如何设计卷积神经网络架构

下面的正则化公式总结了一些经典的用于图片分类问题的卷积神经网络架构:

输入层→(卷积层+→池化层?)+→全连接层+

“+”表示一层或多层,“?”表示有或者没有
除了LeNet-5模型,2012年ImageNet ILSVRC图像分类挑战的第一名AlexNet模型、2013年ILSVRC第一名ZF Net模型已经2014年第二名VGGNet模型的架构都满足上面的正则表达式。

如何设置卷积层或池化层配置

  • 过滤器的尺寸:1或3或5,有些网络中有过7甚至11
  • 过滤器的深度:逐层递增。每经过一次池化层之后,卷积层深度*2
  • 卷积层的步长:一般为1,有些也会使用2甚至3
  • 池化层:最多的是max_pooling,过滤器边长一般为2或者3,步长一般为2或3
阅读全文
0 0
原创粉丝点击