RTUComputer ScienceYr 2024 · Sem 62024

Q3Machine Learning

Question

2 marks

What is the role of a learning rate in gradient descent?

Answer

The learning rate is a critical mathematical hyperparameter in Gradient Descent that strictly dictates the absolute magnitude of the step taken toward the global minimum of the loss function.

The learning rate () multiplies the gradient vector: . If is too massive, the algorithm violently overshoots the minimum and mathematically diverges to infinity. If is too microscopic, the algorithm converges so catastrophically slowly that it stalls in local minima.

Back to Paper