当前位置:网站首页>Machine learning 8-artificial neural network

Machine learning 8-artificial neural network

2022-06-29 18:43:00 Just a

One . Artificial neural network

Artificial neural networks can do anything

1.1 The principles of the human nervous system

image.png

image.png

Simplified schematic diagram :
image.png

1.2 Learning and memory

Part of the structure is innate ( Unconditioned reflection )
Most of them are connected through learning ( It is also possible to eliminate the connection )
The job of memory is to change synaptic strength

1.3 The origin of artificial neural networks

image.png

image.png

1.4 Reference books

image.png
image.png

Two . ANN

2.1 ANN brief introduction

image.png

A term is used to explain :
Input node : x1,x2,x3
Output node : y
Weight vector : 0.3,0.3,0.3 ( The weight of each input node can be different )
Bias factor : 0.4 (y=0.3*x1 + 0.3*x2 + 0.3*x3 - 0.4 )
Activation function : For solving nonlinear problems
Learning rate :
image.png

2.2 Example

y Is the value of a symbolic function , The result of a symbolic function is usually 1 and -1, It can be understood as yes and no, By judging the input conditions , Then add the weight , The final judgment is yes still no.
image.png

2.3 Self learning algorithm

Description of algorithm :
image.png

Convergence condition :
image.png

Geometric interpretation :
image.png

The choice of learning rate :
image.png

 Insert picture description here

Limitations of single-layer perceptron :
image.png

2.4 Training bias

image.png

2.5 Various activation functions

y=0.3*x1 + 0.3*x2 + 0.3*x3 - 0.4
The above functions deal with linear relations , But if the input value is nonlinear to the result , Then it will not be used at this time , The activation function came into being , To solve such problems .
image.png

2.6 Neural network topology

image.png

2.7 Learning rule

image.png

image.png

2.8 Artificial neural network modeling

image.png

2.9 Linear neural networks

image.png

Reference resources :

  1. http://www.dataguru.cn/article-4063-1.html
  2. https://zhuanlan.zhihu.com/p/25279356
  3. https://zhuanlan.zhihu.com/p/98863801
原网站

版权声明
本文为[Just a]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/180/202206291627559945.html