tensorflow实现一般的神经网络

本文介绍使用TensorFlow实现的两个手写数字识别模型。第一个模型使用单一的softmax层来预测MNIST数据集的手写数字,第二个模型则通过增加一个隐藏层和dropout机制来解决过拟合问题,提高识别精度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

exercise9_classification.py

1.概要
实现mnist手写数字预测。
2.结构
只有一层softmax层。
3.代码

import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data

# number 1 to 10 data
mnist = input_data.read_data_sets('MNIST_data', one_hot=True)
# 这两句专门用于下载mnist数据(如果当前文件夹内没有此数据文件),因此它确实是涉及到网址的。而且它下载了之后会在当前目录有一个MNIST_data文件

def add_layer(inputs, in_size, out_size, activation_function=None):
    Weights = tf.Variable(tf.random_normal([in_size, out_size]))  # 生成随机数
    bias = tf.Variable(tf.zeros([1, out_size]) + 0.1)  # 偏置值推荐不为0
    Wx_plus_b = tf.matmul(inputs, Weights) + bias  # 预测值, inputs是300x1的矩阵, weights是1xout的矩阵, bias是1xout的矩阵
    if activation_function is None:  # 直接输出
        outputs = Wx_plus_b
    else:  # 使用f(x)计算
        outputs = activation_function(Wx_plus_b)
    return outputs

def compute_accuracy(v_xs, v_ys):
    global prediction                                                           # 设置全局变量
    y_pre = sess.run(prediction, feed_dict={xs: v_xs})                          # 将xs数据feed到prediction中生成预测值,重算针对test数据的输出
    correct_prediction = tf.equal(tf.argmax(y_pre, 1), tf.argmax(v_ys, 1))     # tf.equal():相等返回True,等于数字1
    accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))          # tf.cast(x):将x的数据格式转化成dtype
    result = sess.run(accuracy, feed_dict={xs: v_xs, ys: v_ys})                 # 计算测试数据集的准确率
    return result       # 输出百分比

# define placeholder for inputs to network
xs = tf.placeholder(tf.float32, [None, 784])  # None表示可以给定任意多个输入数据,每张图片28x28个像素点(黑就1,白就0),共784个像素点
ys = tf.placeholder(tf.float32, [None, 10])

# add ouput layer
prediction = add_layer(xs, 784, 10, activation_function=tf.nn.softmax)      # softmax就是用来分类的

# the error between prediction and real data
cross_erropy = tf.reduce_mean(-tf.reduce_sum(ys*tf.log(prediction), reduction_indices=[1]))     # loss这里是交叉熵(与分类的softmax对应)
train_step = tf.train.GradientDescentOptimizer(0.5).minimize(cross_erropy)

sess = tf.Session()
# important step
sess.run(tf.global_variables_initializer())

for i in range(1000):
    batch_xs, batch_ys = mnist.train.next_batch(100)                    # 提取出来一部分的x和y,100个、100个地学,可以有比较快地学习速度
    sess.run(train_step, feed_dict={xs: batch_xs, ys: batch_ys})
    if i % 50 == 0:
        print(compute_accuracy(mnist.test.images, mnist.test.labels))     # 对测试集的预测准确度

exercise10_overfitting.py

1.概要
实现mnist手写数字识别。
2.结构
一个隐含层+一个softmax层,不同的是它在层定义里增加了dropout。
注:在训练时,每个神经单元以概率p被保留(dropout丢弃率为1-p)
3.代码

import tensorflow as tf
from sklearn.datasets import load_digits
from sklearn.cross_validation import train_test_split
from sklearn.preprocessing import LabelBinarizer

# load data
digits = load_digits()
X = digits.data                         # 从0到9数字的data
y = digits.target
y = LabelBinarizer().fit_transform(y)   # labels
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=3)

def add_layer(inputs, in_size, out_size, layer_name, activation_function=None):
    Weights = tf.Variable(tf.random_normal([in_size, out_size]))  # 生成随机数
    bias = tf.Variable(tf.zeros([1, out_size]) + 0.1)  # 偏置值推荐不为0
    Wx_plus_b = tf.matmul(inputs, Weights) + bias  # 预测值, inputs是300x1的矩阵, weights是1xout的矩阵, bias是1xout的矩阵
    Wx_plus_b = tf.nn.dropout(Wx_plus_b, keep_prob)
    if activation_function is None:  # 直接输出
        outputs = Wx_plus_b
    else:  # 使用f(x)计算
        outputs = activation_function(Wx_plus_b)
    # tf.summary.histogram(layer_name+'/outputs', outputs)
    return outputs

# define placeholder for inputs to network
keep_prob  = tf.placeholder(tf.float32)         #保持多少的结果不被dropout,参数表示百分比
xs = tf.placeholder(tf.float32, [None, 64])     # 8x8
ys = tf.placeholder(tf.float32, [None, 10])

# add ouput layer
l1 = add_layer(xs, 64, 50, 'l1', activation_function=tf.nn.tanh)
prediction = add_layer(l1, 50, 10, 'l2', activation_function=tf.nn.softmax)      # softmax就是用来分类的

# the error between prediction and real data
cross_erropy = tf.reduce_mean(-tf.reduce_sum(ys*tf.log(prediction), reduction_indices=[1]))     # loss这里是交叉熵(与分类的softmax对应)
tf.summary.scalar('loss', cross_erropy)     # 用来显示标量信息
train_step = tf.train.GradientDescentOptimizer(0.6).minimize(cross_erropy)

sess = tf.Session()
merged = tf.summary.merge_all()
# merge_all 可以将所有summary全部保存到磁盘,以便tensorboard显示。如果没有特殊要求,一般用这一句就可一显示训练时的各种信息了。

# summary writer goes in here
train_writer = tf.summary.FileWriter("logs/train", sess.graph)      # 指定一个文件保存图
test_writer = tf.summary.FileWriter("logs/test", sess.graph)

# important step
sess.run(tf.global_variables_initializer())

for i in range(500):
    sess.run(train_step, feed_dict={xs: X_train, ys: y_train, keep_prob: 0.5})    # 500次训练
    if i % 50 == 0:
        # record loss
        train_result = sess.run(merged, feed_dict={xs: X_train, ys: y_train, keep_prob: 1})     # 计算train的ys的loss点
        test_result = sess.run(merged, feed_dict={xs: X_test, ys: y_test, keep_prob: 1})        # 计算test的ys的loss的点
        train_writer.add_summary(train_result, i)       # train_result是summary类型的,需要放入train_writer中,i步数(x轴)
        test_writer.add_summary(test_result, i)

"""
train_step每次按keep_prob保留率进行训练,计算得出一次训练得到的prediction是一个输入样本数x标签数的矩阵,分别对应每个样本的对应可能的标签的概率值。
loss采用交叉熵计算,即计算每个ys*log(prediction)并求和,再取负数,再求平均数就是loss。
=>计算loss需要使用两个参数,一个ys矩阵,由summary函数给定了,比如上面的y_train和y_test矩阵;另一个prediction矩阵就是当前训练出来的ouputs矩阵,
它在一轮循环里面是不变的。
=>train_writer图里保存到的一系列每隔50次训练取的一次训练的loss值,横坐标为i(训练次数),纵坐标为loss值。这个loss值表达的是输入X_train计算的预测值跟训练集真实值的误差。
  test_writer图里保存到的一系列每隔50次训练取的一次训练的loss值,横坐标为i(训练次数),纵坐标为loss值。这个loss值表达的是这一次X_test计算的预测值跟测试集真实值的误差。???
  
问题是:走到test_result时,train_step是否会使用xs: X_test, ys: y_test训练一遍得出新的prediction矩阵,还是沿用老prediction矩阵。

一次训练的流程:
传入xs和ys,调用train_step;
由train_step采用梯度下降法训练权重矩阵,何时停止输出?
一次前向输出+一次反向误差传播,就截止,输出outputs是由前向计算得到的结果。

tensorflow运作模式
        1.tensorflow是用python先构建一个图,然后通过外部运算优化得到结果
        2.向模型不断喂入数据,然后给出要不断优化的对象loss,根据loss的走势不断优化模型得到结果
一旦启动sess.run(),就是启动数据流图,就把程序看出一张数据流图,看所要节点的输入输出,该节点的输入的依赖节点,看数据源到该节点数据是怎么流的。
"""
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值