TensorFlow系列——2、TensorFlow实现Softmax Regression识别手写数组

1、载入数据

以one-hot编码读取MNIST数据集(label是 只有一个值为1其他为0 的一维数组,1对应的位置代表其类别)

from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)

查看数据集情况

print(mnist.train.images.shape, mnist.train.labels.shape)
print(mnist.test.images.shape, mnist.test.labels.shape)
print(mnist.validation.images.shape, mnist.validation.labels.shape)

注意
TensorFlow2.0已经弃用了上述载入数据的方式,改用(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data()

2、注册session并创建SoftMax模型

import tensorflow as tf
sess = tf.InteractiveSession()

x = tf.placeholder(tf.float32, [None, 784])  # None表示行数待定,784=28*28表示将一张图片平铺为一维数组
w = tf.Variable(tf.zeros([784, 10]))
b = tf.Variable(tf.zeros([10]))
y = tf.nn.softmax(tf.matmul(x, w) + b)

3、定义损失函数和优化器

# y_是真实的label
y_ = tf.placeholder(tf.float32, [None, 10])
# 损失函数 交叉熵
cross_entropy = tf.reduce_mean(-tf.reduce_sum(y_*tf.log(y), reduction_indices=[1))

# 优化器 随机梯度下降
optimizer = tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy)

4、开始训练

tf.global_variables_intializer().run()

for i in range(1000):
	batch_xs, batch_ys = mnist.train.next_batch(100)
	optimizer.run({x: batch_xs, y_: batch_ys})

5、预测与评估

# 判断是否预测正确
correct_prediction = tf.equal(tf.argmax(y, 1), tf.argmax(y_, 1))  
# 计算准确率
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))

print(accuracy.eval({x: mnist.test.images, y_: mnist.test.labels}))
92.75%

虽然说92%的准确率是一个不错的效果,但还达不到实用的程度。之后的文章会介绍几个提高准确率的方法:

  • 加入隐藏层
  • 结合Dropout、Adagrad、ReLU等技术
  • 引入卷积层、池化层
  • 基于卷积神经网络的state-of-the-art方法
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值