This interactive visualization shows how a simple neural network with a single neuron (Perceptron) works.
Toggle ON for YES, OFF for NO
Adjust the importance of each characteristic
Choose how the perceptron transforms input to output
The Step function outputs 1 if the input is positive and 0 otherwise. This is the classic perceptron activation function.
A Perceptron is the simplest type of artificial neural network. It's a model of a single neuron that was developed in the 1950s and forms the foundation for more complex neural networks.
The perceptron calculates its output using this process:
Mathematically: output = activation(∑(input_i × weight_i) + bias)