摘要:
通过TensorFlow实现多层感知机,识别MNIST数据集,最终正确率98%左右。## 通过TensorFlow实现多层感知机,识别MNIST数据集from tensorflow.examples.tutorials.mnist import input_datai... 阅读全文
摘要:
通过TensorFlow实现Softmax Regression,识别MNIST数据集,最终正确率92%左右。## 通过TensorFlow实现Softmax Regression,实现手写识别# 加载mnist数据from tensorflow.examples.t... 阅读全文
摘要:
TensorFlow测试程序,如果正常运行,输出 b'hello,tensorf' ,则TensorFlow安装成功。import tensorflow as tfhello = tf.constant('hello,tensorf')sess = tf.Sessio... 阅读全文