tensorflow
涂伟峰
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
深度学习MNIST手写数字识别
python3.6 tensorflow1.12.0 # -*- coding: utf-8 -*- import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("MNIST_data/", one_hot=True) ...原创 2018-12-14 18:18:28 · 525 阅读 · 0 评论 -
BP神经网络 + Tensorflow
将上一篇文章的代码翻译为Tensorflow。 链接:https://blog.youkuaiyun.com/seTaire/article/details/93760032 训练结果: import numpy as np import tensorflow as tf def randomdata(classes, numberperclass, dimension): x ...原创 2019-06-27 16:27:21 · 612 阅读 · 0 评论
分享