Weighted Sum 0.00
Activation Input 0.00
Output 0

💡 Key Insight

A perceptron computes a weighted sum and thresholds it. Changing weights controls how much each input contributes to the decision.

Accuracy: —

Training Log

Press Play or Step to begin training...
Ready

OR Gate (Separable) ✓

Epoch: 0 Accuracy:

XOR Gate (Not Separable) ✗

Epoch: 0 Accuracy:

💡 Key Insight

A perceptron is just a moving line. It can only solve problems where a straight line can separate the classes. XOR requires at least two lines (a hidden layer).

Single Perceptron (Linear)

Epoch: 0 Accuracy:

MLP (Nonlinear)

Epoch: 0 Accuracy:

💡 Key Insight

A single perceptron draws one line. An MLP stacks multiple perceptrons, creating complex decision boundaries that can solve non-linear problems like XOR.