Lead Data Scientist Question:
Tell me what is exploding gradients?
Answer:
“Exploding gradients are a problem where large error gradients accumulate and result in very large updates to neural network model weights during training.” At an extreme, the values of weights can become so large as to overflow and result in NaN values.
This has the effect of your model being unstable and unable to learn from your training data. Now let’s understand what is the gradient.
Gradient:
Gradient is the direction and magnitude calculated during training of a neural network that is used to update the network weights in the right direction and by the right amount.
This has the effect of your model being unstable and unable to learn from your training data. Now let’s understand what is the gradient.
Gradient:
Gradient is the direction and magnitude calculated during training of a neural network that is used to update the network weights in the right direction and by the right amount.
Previous Question | Next Question |
Do you know more functions in brief in R? | Can you explain me what is logistic regression? Or State an example when you have used logistic regression recently? |