accosmin / nano

C++ library [machine learning & numerical optimization] - superseeded by libnano
MIT License
1 stars 0 forks source link

Implement quasi-Newton methods #197

Open accosmin opened 6 years ago

accosmin commented 6 years ago

See the three examples from Nocedal's "Introductory lectures on convex optimization", page 41:

These requires storing in memory a matrix of size DxD, but they can be good baselines to compare with. May implement a generic "Variable metric" solver templatized by the update method (just like for CGD).

Bonus: