You are on page 1of 2

Jaringan Syaraf Tiruan

Theory:
McCulloch & Pitts (1943) described an artificial neuron
inputs are either excitatory (+1) or inhibitory (-1)
each input has a weight associated with it
the activation function multiplies each input value by its weight
if the sum of the weighted inputs >= ,
then the neuron fires (returns 1), else doesn't fire (returns 1)
Question 1:

Draw the neuron model and explanation


Write the formula
Make the computer program
Draw the truth table
==========================================================================
Theory:
1 2
1 1 1
1 0 0
0 1 0
0 0 0
AND

1 2
1 1 1
1 0 1
0 1 1
0 0 0
OR

1 2
1 1 0
1 0 1
0 1 1
0 0 0
XOR

Question 2:


Make a model of the neuron McCulloh-Pitts to express the logic AND ; OR; and
XOR function, give explanation
Write the formula
Make the computer program
Draw the truth table
==========================================================================
Theory:
In 1949, D.O Hebb introduced a way to calculate weight and bias iteratively.

Question 3:

Make a model of the Hebb neuron to express the logic AND function, give explanation
Write the formula
Make the computer program
Draw the truth table

You might also like