Python equivalent: scipy.optimize () in c ++?

In particular, I am looking for an optimizer function such as scipy.optimize.fmin_l_bfgs_b. Can someone help me please? Or indicate pointers?

Thanks!

+4
source share
1 answer

dlib There are a number of optimizers in the C ++ library, including L-BFGS. It is free, and optimization tools are only for headers, so there is nothing to install and configure. There is also a corresponding sample program that shows how to use the L-BFGS optimizer.

+6
source

Source: https://habr.com/ru/post/1413054/


All Articles