Understanding Artificial Neural Network using Python
The Artificial Neural Network (ANN) is inspired by the animal brain. Even though currently the ANNs are not as powerful as the brain yet, these are one of the most powerful learning models in the field of machine learning. Understanding the Human Brain and ANNs Let's understand first how the human brain works and how it influences the ANNs. The biological neuron receives signals through its dendrites which are either amplified or inhibited as they pass through the axons to the dendrites of other neurons. ANNs are also based on a similar concept, where ANNs are a collection of a large number of simple devices called Artificial Neurons. The network learns to perform certain tasks ( like identifying a car ) by training the neurons to fire an action when a particular input ( like an image of a car) is provided. Perceptron Perceptron is one of the earlier proposed models, which takes a weighted sum of the inputs and applies an activation function to it...