随笔分类 -  TensorFlow

摘要:通过TensorFlow实现卷积神经网络,识别MNIST数据集,最终正确率99.2%左右。## 通过TensorFlow实现卷积神经网络,识别MNIST数据集from tensorflow.examples.tutorials.mnist import input_d... 阅读全文
posted @ 2018-05-30 21:25 yucen 阅读(154) 评论(0) 推荐(0)
摘要:通过TensorFlow实现多层感知机,识别MNIST数据集,最终正确率98%左右。## 通过TensorFlow实现多层感知机,识别MNIST数据集from tensorflow.examples.tutorials.mnist import input_datai... 阅读全文
posted @ 2018-05-30 21:18 yucen 阅读(122) 评论(0) 推荐(0)
摘要:通过TensorFlow实现Softmax Regression,识别MNIST数据集,最终正确率92%左右。## 通过TensorFlow实现Softmax Regression,实现手写识别# 加载mnist数据from tensorflow.examples.t... 阅读全文
posted @ 2018-05-30 16:24 yucen 阅读(259) 评论(0) 推荐(0)
摘要:TensorFlow测试程序,如果正常运行,输出 b'hello,tensorf' ,则TensorFlow安装成功。import tensorflow as tfhello = tf.constant('hello,tensorf')sess = tf.Sessio... 阅读全文
posted @ 2018-05-30 15:50 yucen 阅读(3591) 评论(0) 推荐(0)