1. About the Gradient Descent method, choose all that are true:
- It always converges to a local minimum.
- The result may vary depending on the initial point.
- If it converges, then it converges to a global minimum.
- It only works for differentiable functions.
2. Given the Initial Point on the following graph, to which point will the Gradient Descent method converge?
- P1.
- P2.
- P3.
- It won’t converge.
3. Given that
Note: Please use * to indicate the product in the answer. So, if we wrote the entire function
Answer:
4. Let
- -15
- 3
- 1
5. What are the parameters that the Gradient Descent algorithm has? (check all that apply)
- Initial point
- Final point
- Learning rate
- Number of iterations
6. Let
Performing the gradient descent algorithm with learning rate = 0.1, the first iteration will lead us the point
-
$x_1 = (0.6, 0.8)$ -
$x_1 = (-6, 2)$ -
$x_1 = (6, -1)$ -
$x_1 = (0, 1)$