brunorigal / autograd-minimize

A wrapper around scipy minimize which uses the autograd capacities of tensorflow to compute the gradient and hessian.
MIT License
23 stars 6 forks source link

Multiple constraints #11

Closed ant1ni1 closed 1 day ago

ant1ni1 commented 3 weeks ago

It seem that the framework is working with only one constraint. Is it correct?

brunorigal commented 2 days ago

Yes but as the constraint can be a vector of constraints, in principle you can just concatenate the list of constraints you have.

ant1ni1 commented 1 day ago

Thanks