1, 神经元(Neuron)
$ y = f(w_1*x_1 + w_2*x_2 + ... + b) $
f is activation function
Logistic function: $\sigma(x) = \frac{1}{1+exp(-x)}$
Tanh function: $ tanh(x) = 2\sigma(2x)-1 $
计算简单
2, 网络分类
前馈网络(DNN,CNN)
记忆网络(RNN,玻尔兹曼机)
图网络
原文:https://www.cnblogs.com/chest/p/11988486.html