tensorflow学习(三)基于mnist数据的十分类


import numpy as np
import tensorflow as tf
import matplotlib.pyplot as plt
from tensorflow.examples.tutorials import input_data
# import input_data

mnist = input_data.read_data_sets('data/', one_hot= True)
trainimg = mnist.train.images
trainlabel = mnist.train.labels
testimg = mnist.test.images
testimg = mnist.test.labels
x = tf.placeholder('float',[None,784])
y = tf.placeholder('float',[None,10])
w = tf.Variable(tf.zeros([784,10]))
b = tf.Variable(tf.zeros([10]))
active = tf.nn.softmax(tf.matmul(x,w)+b)
#损失函数
loss = tf.reduce_mean(-tf.reduce_sum(y*tf.log(active), reduction_indices=1))
#定义优化器
optimizer = tf.train.GradientDescentOptimizer(0.01).minimize(loss)

#判断所有样本中预测和事实是不是相等
pred = tf.equal(tf.argmax(active,1),tf.argmax(y,1))
accr = tf.reduce_mean(tf.cast(pred,'float'))
init = tf.global_variables_initializer()

batch_size =100
with tf.Session() as sess:
    sess.run(init)
    for epoch in range(50):
        avg_cost = 0
        num_batch = int(mnist.train.num_examples/batch_size)
        for i in range(num_batch):
            batch_xs, batch_ys = mnist.train.next_batch(batch_size)
            sess.run(optimizer,feed_dict={x:batch_xs, y:batch_ys})
            avg_cost += sess.run(loss,feed_dict={x:batch_xs, y:batch_ys})
        if epoch %5 ==0:
            feeds_train = {x:batch_xs, y:batch_ys}
            feeds_test = {x:mnist.test.images,y:mnist.test.labels}
            train_acc = sess.run(accr, feed_dict=feeds_train)
            test_acc = sess.run(accr, feed_dict=feeds_test )
            print('epoch %03d/%03d loss:%.9f train_acc:%.3f, test_acc:%.3f'
                  %(epoch, 100,avg_cost,train_acc,test_acc))

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值