Varun Sharma

Logo

View the Project on GitHub netgvarun2012/portfolio

Loss function

In the chain rule, the derivative of a **composite function** is equal to the product of the derivatives of inner and outer functions.

In context of Deep learning, the inner function is the Activation function while outer function is the Loss/Cost function.

In BackPropogation, you have to calculate the gradient of the cost function which inturns calculates the gradient/derivative Of ACTIVATION FUNCTION.

image

image

Vanishing and Exploding Gradients

image

image

image

Various techniques have been proposed to mitigate the vanishing gradient problem, including:

image

image