Week 3 Flashcards
1
Q
How does the Nelder-Mead method work? What are the steps?
A
- Begin with simplex (x(0), …, x(d))
- Do for g = 1, 2, …, K
- Sort x(0), …, x(d) s.t. f(x(0)) ≥ f(x(1)) ≥ … ≥ f(x(d)), with x(0) is the worst point.
- Determine the average a(bar), excluding the worst
- Update x(0) with a better point, which lies in the line starting from x(0) toward x(bar), if no points found shrink the simplex by moving other points closer to the best point.
2
Q
How does the differrential evulolution method work?
A
- Begin with generation g = 0, with population N points x(i, 0)
3
Q
A