
Python3.5手写字体识别
唯相遇
喜欢什么,就要做些自己不喜欢的事。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
runFile.py
#运行这个文件import IdenNum,mnist_loadernet = IdenNum.Network([784, 30, 10])training_data, validation_data, test_data = mnist_loader.load_data_wrapper()net.SGD(training_data, 30, 10, 3.0, test_data=test_dat转载 2017-03-24 10:47:55 · 1555 阅读 · 0 评论 -
mnist_loader.py
"""mnist_loader~~~~~~~~~~~~A library to load the MNIST image data. For details of the datastructures that are returned, see the doc strings for ``load_data``and ``load_data_wrapper``. In practice, ``l转载 2017-03-24 10:47:21 · 4044 阅读 · 0 评论 -
network.py
import random# Third-party librariesimport numpy as npclass Network(object): def __init__(self, sizes): self.num_layers = len(sizes) self.sizes = sizes self.biases = [np.random.randn(y, 1) for y in si转载 2017-03-24 10:37:35 · 900 阅读 · 0 评论