SELECT GATE
COMPUTE
ANALYZE
INSTRUCTIONS

This experiment introduces the basics of neural network training and demonstrates the adaptability of perceptrons in solving basic binary classification problems. To start click on the SELECT GATE.

Select Gate
NETWORK
CONTROLS
TERMINOLOGY

Xi : The values corresponding to Variables i.e. X1 , X2 , ...... Xn

Wi : The values corresponding to Weights i.e. W1 , W2 , ...... Wn

B : The values corresponding to Bias

Σ : The Summation Value ( Σ = x1w1 + x2w2 + x3w3 + ........ + xnwn)

A : The Activation Function (step function)

Y : The Output

OBSERVATION TABLE FOR EPOCH
S. No. X₁ X₂ T Yin Y ΔW₁ ΔW₂ Δb W₁ W₂ b
CALCULATION

Row

W1 (new) =
+ α ( - ) *

W2 (new) =
+ α ( - ) *

b(new) =  
+ α ( - )


NETWORK
OBSERVATION TABLE

AND GATE

OR GATE

GRAPH