Neural Networks (Geoffrey Hinton Course)

From TedYunWiki
Jump to navigation Jump to search

Some Simple Models or Neurons

$y$ output, $b$ bias, $x_i$ input, $w_i$ weight.

Linear Neurons

$y = b + \sum_{i} x_i w_i$

Binary Threshold Neurons

$z = \sum_{i} x_i w_i$

$y = 1$ if $z \geq \theta$, $0$ otherwise.

Or, equivalently,

$z = b + \sum_{i} x_i w_i$

$y = 1$ if $z \geq 0$, $0$ otherwise.