Bruce Lee random walk

优化

本文简单讲解优化问题中的一些基本知识和技巧

什么是优化

凸优化

image

Boyd

非凸优化

image

image

Rosenbrock函数

image

image

image

函数F和f来自于Gil Strang, “Linear Algebra and Its Applications”,对应函数具有一般形式

a,b,c之间存在特殊关系

[X, Y] = meshgrid(-2:0.2:2,-2:0.2:2)
Z = X.^4 -2 * X.^2 + Y.^2
figure
surface(X, Y, Z)
view(3)

image

image

monkey saddle

that is,

image

鞍点问题

机器学习中的应用