Question 1
Which of the following statements correctly distinguishes between Momentum Optimizer and Nesterov Accelerated Momentum (NAG) Optimizer?
Momentum uses the current gradient to update the velocity, while NAG uses a lookahead gradient based on a tentative future position.
Momentum is computationally faster than NAG because it skips calculating the gradient at a lookahead position.
NAG is a variant of momentum that adjusts the step size dynamically during training.
Momentum uses an adaptive learning rate, whereas NAG uses a fixed learning rate.
