优化算法L-BFGS资源索引

非常赞的一组介绍L-BFGS的博文: http://blog.csdn.net/itplus/article/details/21896453
维基百科: http://en.wikipedia.org/wiki/Limited-memory_BFGS


matlab程序minFunc: http://www.cs.ubc.ca/~schmidtm/Software/minFunc.html


C++程序(还有Python等)AlgLib (含介绍): http://www.alglib.net/optimization/lbfgsandcg.php
示例代码: http://www.alglib.net/translator/man/manual.cpp.html#example_minlbfgs_d_1
函数用法的中文翻译: http://blog.csdn.net/settingsun1225/article/details/6142853
注意:该程序库中 存储的历史梯度数目M 必须小于 函数的变量个数N

你可能感兴趣的:(算法)