Open aymgal opened 1 year ago
Hi, Is there any way to retrieve the hess_inv (approximated inverse Hessian) after running the BFGS optimizer? In the original scipy's implementation, the matrix is stored in the return OptimizeResult object.
hess_inv
OptimizeResult
I don't think so, but a patch would be welcome.
Ok, I proposed a patch with #382
Hi, Is there any way to retrieve the
hess_inv
(approximated inverse Hessian) after running the BFGS optimizer? In the original scipy's implementation, the matrix is stored in the returnOptimizeResult
object.