Question

What is the gradient descent update equation?


Annonce
Ad

Answer

$$ X_{n+1} = X_n - \alpha\nabla f(X_n) $$ where:
\( X_{n+1} \) is the next point in \( \mathbb{R}^n \)
\( X_{n} \) is the current point in \( \mathbb{R}^n \)
\( \alpha \) is the step size multiplier
\( \nabla f \) is the gradient of the function to minimize \( f \)


[source]
# ID Query