《神经网络与深度学习》
my__darling
这个作者很懒,什么都没留下…
展开
-
《Neural Networks and Deep Learning》读书笔记:最简单的识别MNIST的神经网络程序(1)
转载请注明出处:https://www.codelast.com/《Neural Networks and Deep Learning》一书的中文译名是《神经网络与深度学习》,书如其名,不需要解释也知道它是讲什么的,这是本入门级的好书。在第一章中,作者展示了如何编写一个简单的、用于识别MNIST数据的Python神经网络程序。对于武林高手来说,看懂程序不会有任何困难,但对于我这样的转载 2017-12-20 12:08:42 · 650 阅读 · 0 评论 -
《Neural Networks and Deep Learning》读书笔记:最简单的识别MNIST的神经网络程序(2)
转载请注明出处:https://www.codelast.com/本文是上一篇文章的续文。《Neural Networks and Deep Learning》一书的中文译名是《神经网络与深度学习》,书如其名,不需要解释也知道它是讲什么的,这是本入门级的好书。在第一章中,作者展示了如何编写一个简单的、用于识别MNIST数据的Python神经网络程序。本文接着上一篇文章对程序转载 2017-12-21 10:55:30 · 455 阅读 · 2 评论 -
神经网络与深度学习(序)
这一系列是翻译和备注在线书籍: http://neuralnetworksanddeeplearning.com/Neural Networks and Deep Learning is a free online book. The book will teach you about: 《神经网络与深度学习》是一本免费的在线书籍,这本书将告诉你:Neural networks翻译 2017-12-18 15:18:13 · 348 阅读 · 0 评论 -
神经网络与深度学习(第一章)(一)
Using neural nets to recognize handwritten digits 使用神经网络识别手写数字The human visual system is one of the wonders of the world. Consider the following sequence of handwritten digits: 人类的视觉系统是世界上的一个奇迹。翻译 2017-12-18 15:20:29 · 582 阅读 · 0 评论 -
神经网络与深度学习(第一章)(二)
Perceptrons 感知器What is a neural network? To get started, I’ll explain a type of artificial neuron called a perceptron. Perceptrons were developed in the 1950s and 1960s by the scientist Frank Rose翻译 2017-12-18 15:24:37 · 543 阅读 · 0 评论 -
神经网络与深度学习(第一章)(三)
Sigmoid neurons Sigmoid神经元Learning algorithms sound terrific. But how can we devise such algorithms for a neural network? Suppose we have a network of perceptrons that we’d like to use to learn to翻译 2017-12-18 15:26:52 · 371 阅读 · 0 评论 -
神经网络与深度学习(第一章)(四)
The architecture of neural networks 神经网络的结构In the next section I’ll introduce a neural network that can do a pretty good job classifying handwritten digits. In preparation for that, it helps to ex翻译 2017-12-18 15:30:54 · 296 阅读 · 0 评论 -
神经网络与深度学习(第一章)(五)
A simple network to classify handwritten digits 分类手写数字的简单网络Having defined neural networks, let’s return to handwriting recognition. We can split the problem of recognizing handwritten digits into翻译 2017-12-18 15:32:40 · 422 阅读 · 0 评论