Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Neural Networks (Supervised)

Neural Networks (Supervised)

The training process of artificial neural networks consists of not only finding best feature representations for our data, but also optimizing the model parameters (weights) toward a correct classification.

Scikit-learn reference.

Forward propagation

Forward propagation is the process that ...

We sum the previous layer’s output multiplied by the weight of each wire. Backpropagation works by using the partial derivatives of the cost function with respect to every weight or bias terms to transmit signal updates from the output layer to the input layer (thus backwards).