TF之CNN:CNN实现mnist数据集预测 96%采用placeholder用法+2层C及其max_pool法+隐藏层dropout法+输出层softmax法+目标函数cross_entropy法+


山长水阔
开心 2022-09-20 11:14:16 64831
分类专栏: 资讯

TF:TF下CNN实现mnist数据集预测 96%采用placeholder用法+2层C及其max_pool法+隐藏层dropout法+输出层softmax法+目标函数cross_entropy法+AdamOptimizer算法

目录

输出结果

代码设计


输出结果

后期更新……

代码设计

  1. import tensorflow as tf
  2. from tensorflow.examples.tutorials.mnist import input_data
  3. number 1 to 10 data
  4. mnist = input_data.read_data_sets('MNIST_data', one_hot=True)
  5. def compute_accuracy(v_xs, v_ys):
  6. global prediction
  7. y_pre = sess.run(prediction, feed_dict={xs: v_xs, keep_prob: 1})
  8. correct_prediction = tf.equal(tf.argmax(y_pre,1), tf.argmax(v_ys,1))
  9. accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
  10. result = sess.run(accuracy, feed_dict={xs: v_xs, ys: v_ys, keep_prob: 1})
  11. return result
  12. def weight_variable(shape):
  13. initial = tf.truncated_normal(shape, stddev=0.1)
  14. return tf.Variable(initial)
  15. def bias_variable(shape):
  16. initial = tf.constant(0.1, shape=shape) return tf.Variable(initial)
  17. def conv2d(x, W):
  18. return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME')
  19. def max_pool_2x2(x):
  20. return tf.nn.max_pool(x, ksize=[1,2,2,1], strides=[1,2,2,1], padding='SAME')
  21. xs = tf.placeholder(tf.float32, [None, 784]) 28x28
  22. ys = tf.placeholder(tf.float32, [None, 10])
  23. keep_prob = tf.placeholder(tf.float32)
  24. x_image = tf.reshape(xs, [-1, 28, 28, 1])
  25. conv1 layer;
  26. W_conv1 = weight_variable([5,5, 1,32])
  27. b_conv1 = bias_variable([32])
  28. h_conv1 = tf.nn.relu(conv2d(x_image, W_conv1) + b_conv1)
  29. h_pool1 = max_pool_2x2(h_conv1)
  30. W_conv2 = weight_variable([5,5, 32, 64])
  31. b_conv2 = bias_variable([64])
  32. h_conv2 = tf.nn.relu(conv2d(h_pool1, W_conv2) + b_conv2)
  33. h_pool2 = max_pool_2x2(h_conv2)
  34. W_fc1 = weight_variable([7*7*64, 1024])
  35. b_fc1 = bias_variable([1024])
  36. h_pool2_flat = tf.reshape(h_pool2, [-1, 7*7*64])
  37. h_fc1 = tf.nn.relu(tf.matmul(h_pool2_flat, W_fc1) + b_fc1)
  38. h_fc1_drop = tf.nn.dropout(h_fc1, keep_prob)
  39. W_fc2 = weight_variable([1024, 10])
  40. b_fc2 = bias_variable([10])
  41. prediction = tf.nn.softmax(tf.matmul(h_fc1_drop, W_fc2) + b_fc2)
  42. the error between prediction and real data
  43. cross_entropy = tf.reduce_mean(-tf.reduce_sum(ys * tf.log(prediction),
  44. reduction_indices=[1]))
  45. train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)
  46. sess = tf.Session()
  47. important step
  48. sess.run(tf.global_variables_initializer())
  49. for i in range(10):
  50. batch_xs, batch_ys = mnist.train.next_batch(100)
  51. sess.run(train_step, feed_dict={xs: batch_xs, ys: batch_ys, keep_prob: 0.5})
  52. if i % 50 == 0:
  53. print(compute_accuracy(
  54. mnist.test.images, mnist.test.labels))

相关文章
TF:TF下CNN实现mnist数据集预测 96%采用placeholder用法+2层C及其max_pool法+隐藏层dropout法+输出层softmax法+目标函数cross_entropy法+AdamOptimizer算法
 

网站声明:如果转载,请联系本站管理员。否则一切后果自行承担。

本文链接:https://www.xckfsq.com/news/show.html?id=4240
赞同 0
评论 0 条
开心L1
粉丝 0 发表 10 + 关注 私信
上周热门
Kingbase用户权限管理  2020
信刻全自动光盘摆渡系统  1749
信刻国产化智能光盘柜管理系统  1419
银河麒麟添加网络打印机时,出现“client-error-not-possible”错误提示  1013
银河麒麟打印带有图像的文档时出错  923
银河麒麟添加打印机时,出现“server-error-internal-error”  714
麒麟系统也能完整体验微信啦!  657
统信桌面专业版【如何查询系统安装时间】  632
统信操作系统各版本介绍  623
统信桌面专业版【全盘安装UOS系统】介绍  597
本周热议
我的信创开放社区兼职赚钱历程 40
今天你签到了吗? 27
信创开放社区邀请他人注册的具体步骤如下 15
如何玩转信创开放社区—从小白进阶到专家 15
方德桌面操作系统 14
我有15积分有什么用? 13
用抖音玩法闯信创开放社区——用平台宣传企业产品服务 13
如何让你先人一步获得悬赏问题信息?(创作者必看) 12
2024中国信创产业发展大会暨中国信息科技创新与应用博览会 9
中央国家机关政府采购中心:应当将CPU、操作系统符合安全可靠测评要求纳入采购需求 8

添加我为好友,拉您入交流群!

请使用微信扫一扫!