Physics 212, 2018: Lecture 13
Revision as of 09:53, 5 March 2018 by nemenman>Ilya (Created page with "{{PHYS212-2018}} Why is fitting hard: Large dimensionality, multiple minima, flat regions. What is the maximum accuracy of optimization? For future lectures, start reading: ...")
Back to the main Teaching page.
Back to Physics 212, 2018: Computational Modeling.
Why is fitting hard: Large dimensionality, multiple minima, flat regions. What is the maximum accuracy of optimization?
For future lectures, start reading:
- http://docs.scipy.org/doc/scipy/reference/optimize.html -- Optimization with Python/SciPy
In the class lectures for this module, we will talk about the following methods:
- Multi-dimensional linear regression (no derivations) using numpy.linalg.lstsq http://docs.scipy.org/doc/numpy-1.10.0/reference/generated/numpy.linalg.lstsq.html
- General considerations for nonlinear minimization (with and without derivatives; with and without second derivatives)
- Golden mean 1-d search
- Parabolic interpolation
- Newton method
- Your turn
- Write down a parabolic interpolation or Newton method minimizer of 1-d functions. Minimize a using your minimizer. Do you get the expected result?