博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
chapter1:using neural nets to recognize handwritten digits
阅读量:4986 次
发布时间:2019-06-12

本文共 1012 字,大约阅读时间需要 3 分钟。

two important types of artificial neuron :the perceptron and the sigmoid neuron

Perceptrons

感知机的输入个数不限,每个输入的取值都是二元的(0或1,这点不确定,后续确认下),输出是0或1.

Sigmoid neuron

Sigmoid neurons are similar to perceptrons, but modified so that small changes in their weights and bias cause only a small change in their output. That's the crucial fact which will allow a network of sigmoid neurons to learn.

sigmoid neuron 输入:these inputs can  take on any values between 0 and 1.

 

sigmoid neuron与perceptrons的相似点:当z = w . x + b ->正无穷时,sigmoid neuron的输出趋向于1.当z = w . x + b ->负无穷时,sigmoid neuron的输出趋向于0.而感知机的输出就是0或1.

The smoothness of σ (sigmoid函数值的平滑性) means that small changes  in the weights and in the bias will produce a small change in the output from the neuron.

上面公式如何推导出来?

后续的笔记直接写在纸上了

The architecture of neural networks

A simple network to classify handwritten digits

Learning with gradient descent

Implementing our network to classify digits

Toward deep learning

 


 

转载于:https://www.cnblogs.com/ljygoodgoodstudydaydayup/p/6403232.html

你可能感兴趣的文章
如何统一修改Altium Designer中的字符大小...
查看>>
如何适应现代雇佣关系
查看>>
Codeforces Round #410 (Div. 2)B. Mike and strings(暴力)
查看>>
CABasicAnimation 基础
查看>>
delphi通过Idhttp和php交互
查看>>
两栏布局的写法
查看>>
多线程学习笔记五之读写锁实现分析
查看>>
linux内核分析(网课期末&地面课期中)
查看>>
Spring中的设计模式2
查看>>
vue项目向小程序迁移调研
查看>>
Jquery权威指南
查看>>
CSS hack大全(转)
查看>>
ZOJ - 3229 Shoot the Bullet (有源汇点上下界最大流)
查看>>
【14】redis
查看>>
蓝桥杯/第四届/猜年龄
查看>>
LeetCode-Letter Combinations of a Phone Number
查看>>
关于ubuntu的图形界面的关闭与开启
查看>>
Codeforces Round #400 E. The Holmes Children
查看>>
hdu 1759 Matrix Revolution(矩阵转BFS)
查看>>
LintCode-88.最近公共祖先
查看>>