Reputation: 143
We were formulating a optimization problem and using Mosek solver.
But which would be better modelling framework for Mosek, among the following:
In one line, Is there a clear winner b/w the two choices or we need to find a balance point?
Upvotes: 0
Views: 659
Reputation: 3066
No clear winner, it depends on your problem. If computational time is crucial and giving initial solution is a game changer: use mosek directly. However, it will require your to carefully formulate your problem and give up on the transformations and reformulations cvxpy supply by default. cvxpy also supply some additional features (derivatives etc) that could be useful.
No right or wrong answer, both are great to have in your toolbox. It's like to ask "what's better, C or Python?" it depends on your needs only.
Upvotes: 1