감동, 마음이 움직이는 것

[MMM] Inverse problem 본문

Study

[MMM] Inverse problem

Struggler J. 2018. 2. 12. 23:08
  • Finding optimum in nonlinear regression (with only one global optimum)
    1. gradient descent method (use gradient) --- good to far away from equilibrium
    2. Gauss-Newton method (use intersection between y=0 and tangential line) --- good to close to equilibrium
    3. Levenberg-Marquardt (Combination between method 1. and 2.) --- there is a control parameter which called lambda, limiting values reproduce method 1 or 2., There are many libraries, and you can just use them not writing the code.


  • Finding optimum in nonlinear regression (with only multiple optima)
    1. use multiple initial conditions
    2. Markov chain Monte Carlo method --- In general (based on experience), MCMC is faster than gradient descent method when the number of parameters greater than 5. 
    3. Genetic algorithm 
    4. DiRect (searching grid and increase resolution, the condition for searching is min(S/V) where S is the objective function and V is volume of parameter space) --- for bounded parameter range



'Study' 카테고리의 다른 글

[Fick's law] Fick's laws of diffusion  (0) 2018.03.06
[primitive matrix] the second largest eigenvalue  (0) 2018.02.14
[Pearson Correlation]  (0) 2018.01.04
[Time separation method]  (0) 2017.12.08
[Poisson process]  (0) 2017.12.08