OptML_course icon indicating copy to clipboard operation
OptML_course copied to clipboard

EPFL Course - Optimization for Machine Learning - CS-439

Results 6 OptML_course issues
Sort by recently updated
recently updated
newest added

In Lemma 4.3, the easy direction (Exercise 29) can easily be proved. However, the other direction needs additional conditions, otherwise, it's not correct. For example, consider f(x) = -√x for...

In the proof, I found that after dividing both sides by ![image](https://user-images.githubusercontent.com/29209944/165927568-65bd16cf-55ce-4be8-8630-751d671a7f6b.png) we can only conclude that the left part is ≤ 0 (since there is no guarantee that it...

In Chapter 2, there are many references to the gradient descent algorithm, but the following equation numbers are not (2.1) but (2.11).

In the lecture 11 slides about duality (page 6), shouldn't it be L(u) = - f*(-u) - g*(A^T u), instead of the expression given there? Thanks!

![{50616BD9-1A5C-427B-8D3D-2B0692DC3B9C}](https://github.com/user-attachments/assets/05da9680-6099-4909-bc8e-16fe254f368b) In Lab 02, the `grad_norm_bound` value in the last section is computed incorrectly. It should be calculated as `(25 * np.linalg.norm(np.dot(A.T, A), 2) + np.linalg.norm(np.dot(A.T, b))) / A.shape[0]` in...

There is a typo in one of the helper files. Removing the `b` fixes it.