Practical 3 ANN
Practical 3 ANN
Aim : Write a Python Program using Perceptron Neural Network to recognise even
and odd number. Given numbers are in ASCII form 0 to 9.
Theory:A Perceptron is an artificial neuron, essential for Deep Learning
neural networks. Discover its principle, its use, and its importance in Data
Science.
These neurons are interconnected nerve cells, and allow the processing and
transmission of chemical and electrical signals. Dendrites are branches that
receive information from other neurons. The cell nuclei process the
information received from the dendrites. Finally, synapses serve as connections
between neurons.
In each neural network, we distinguish the input layer, the output layer, and
different hidden layers. The data is transmitted from one layer to the other.
The Perceptron receives multiple input signals. If the sum of the signals exceeds a
certain threshold, a signal is produced or, conversely, no output is produced.
1
Assignment No 3:
This value can be positive or negative. The artificial neuron is activated if the value
is positive. It is therefore activated only if the calculated weight of the input data
exceeds a certain threshold.
The predicted result is compared with the known result. If there is a difference,
the error is back propagated in order to adjust the weights.
2
Assignment No 3:
Conclusion: