We were formulating a optimization problem and using Mosek solver.
But which would be better modelling framework for Mosek, among the following:
- Cvxpy: Earlier we used Cvxpy, but it lacks a few features (e.g. solution initialization) which are present in Mosek's Optimizer API.
- Mosek Optimizer API: Cvxpy seems to do heavy transformation to problem, before giving it to Mosek. This would be lost, if we directly use Mosek Optimizer API. Is that transformation really helpful (a game changer) to mosek?
In one line, Is there a clear winner b/w the two choices or we need to find a balance point?