next up previous
Next: Feedback Up: Neural Networks Previous: Neural Networks

Types of Activation Functions

An activation function is defined by $ \phi(v)$ and defines the output of a neuron in terms of its input (aka induced local field) $ v$. There are three types of activation functions
  1. Threshhold function an example of which is

    $\displaystyle \phi(v) = \left\{ \begin{array}{ll}
1 & \mbox{if $v \geq 0$} \\
0 & \mbox{if $v < 0$}
\end{array} \right.
$

    This function is also termed the Heaviside function.
  2. Piecewise Linear

    $\displaystyle \phi(v) = \left\{ \begin{array}{ll}
1 & \mbox{if $v \geq +1/2$} \...
...mbox{if $1/2 > v > -1/2$} \\
0 & \mbox{if $v \leq -1/2$}
\end{array} \right.
$

  3. Sigmoid Examples include



2003-06-08