diff --git a/competitions/getting-started/digit-recognizer/daily_report.md b/competitions/getting-started/digit-recognizer/daily_report.md index 6e56d5d3..4c9ae6bb 100644 --- a/competitions/getting-started/digit-recognizer/daily_report.md +++ b/competitions/getting-started/digit-recognizer/daily_report.md @@ -1,12 +1,12 @@ - # 2018-03-20 -## wmpscc + +## @wmpscc 1. 已完成 1.使用CNN,准确率0.9929 2. 下一步计划    1.进一步优化 3. 代码 - ``` Python +``` Python #!/usr/bin/env python # _*_coding:utf-8_*_ from tensorflow.examples.tutorials.mnist import input_data @@ -84,6 +84,7 @@ with tf.Session() as sess: print("test accuracy %g" % accuracy.eval(feed_dict={x: mnist.test.images, y_: mnist.test.labels, keep_prob: 1.0})) ``` + ## @xxxx100 拜读很多大佬的代码,学习怎样编写掉包的python代码,但是对sk-learn的文档还是不熟悉,下一步打算看看文档,继续看代码。