C463 / B551 Artificial Intelligence

Neural Networks

Neural Networks

History of NN

Why Use NN?

Neuron

Neuron
 

Activation Function

Network Structure

Network Structure

A feed-forward network
Layers: units at the same distance from the inputs.


A recurrent network.

Example

Given: a1=2, a2=0.05, a3=3.
First sum: 0.1*2+0.05*1+0.2*3 = 0.85 => a4=1
Second: 3*2 + 5*3 = 21 =>a5 = 1
Third sum: 1.7*1 + 1.3*1 = 3 =>a6 = 1 (output)

Perceptrons

Delta Learning for a Neuron

Back-Propagation Algorithm

Self-Organizing Maps (SOM)

SOM
  

Example of trained SOM

Applications