Simple, clear. I love it. I want more. A whole series on optimization.
@mkelly663 жыл бұрын
All of your videos did a great job of clearly explaining the topics. Thanks, I really appreciated the clear explanations!
@QT-yt4db Жыл бұрын
The dog at the end is lovely...
@MrFawkez3 жыл бұрын
A great followup to the CG video. Thank you.
@swaggcam4122 жыл бұрын
This is a great resource, thank you for sharing!
@xplorethings3 жыл бұрын
Really well done!
@colin_hart2 жыл бұрын
Thank you for creating this presentation. I arrived here while looking for exposition on Arnoldi and Lanczos iteration. Any new content about sparse iterative methods would be gratefully received. Cheers!
@dmit10 Жыл бұрын
I would suggest L-BFGS, partial Cholesky decomposition (version with limited memory), and "when to use proximal methods over non-proximal" (not just how they work).
@ricardomilos94043 жыл бұрын
In this video was shown that the A^-1 ≈ L^-1U^-1 = M. In code was used M^-1 = L * U (element wise multiplication of LU, not matrix multiplication). It follows that preconditioning only requires the diagonal of the matrix U, since everything else is reduced Should elementwise multiplication be implemented instead of matrix multiplication? And is it correct that M^-1 = LU (maybe it should be like this M^-1 = L^-1U^-1 ?)
@PriyaDeo3 жыл бұрын
Please note that A^-1 ≈ U^-1L^-1 (not L^-1U^-1), since we are taking the LU factorization of matrix A : A ≈ LU => A^-1 = (LU)^-1 => A^-1 = U^-1L^-1. In the code, we did do matrix multiplication. The numpy matrix library uses '*' to denote matrix multiplication. For element-wise multiplication you need to use np.multiply(L, U).
@QT-yt4db Жыл бұрын
Great video, but the voice is a little bit low, makes it hard to hear without turning high the volume...
@Darkev773 жыл бұрын
Proximal GD next?
@nickp75263 жыл бұрын
Great stuff! What range of subjects can you cover?
@nickp75263 жыл бұрын
Oh, I just got to the end :) Do you know anything about support vector machines? I have a class on it this semester and I would like a small introduction
@PriyaDeo3 жыл бұрын
I have approximate knowledge of many things :P But to answer this question properly: topics from most college-level undergrad courses in Maths & Computer science. Some topics from grad-level courses in Machine Learning, Computer Vision & Robotics. Software Engineering Interview problems (e.g. HackerRank questions). And so on. I can definitely do a video on SVM's.