Warning: Underdetermined inequality constraints detected.
CVX cannot solve this problem; but it is likely unbounded.
In cvxprob.solve at 83
What happen with this statement? How can I solved this problem?
Do you some suggestion to correct this problem… and suggestion to
implement your algorithm 1 MoM-DSVM?
You haven’t offered enough of your model to offer any sort of assistance, I’m afraid. Please edit your question and include the entire model. And take note of these instructions for including code in your posts so that it’s readable. Thanks!
This is interesting, but I am stumped. This is just an unconstrained quadratic form. Why are you solving it with CVX? It should be solvable with just a linear system solve.
Hi Michael,
thank you for interested on this model.
I am implementing consensus-based distributed svm from Forero’s paper in http://www.jmlr.org/papers/volume11/forero10a/forero10a.pdf (eq 16)
But may be I am wrong how to implement in CVX
I’m afraid I can’t help people build models out of papers. I limit my assistance here to CVX usage issues. What I think is occurring is that the model that you have constructed is an unconstrained quadratic with a rank deficient Hessian. It is trivial to find with linear systems techniques.
@ Mark:
Sorry since I wasns’t allowed to post more than three replies to the other forum (being a new user), I am writing a reply to your questions here:
Actually,
- (lambdanorm(L,1) -lambda(1/variance)*N) is a part of maximize{},
the paranthesis was missing
CVX optimization variable here is L (Laplacian matrix)
In the code
X = precision matrix
||X||_1 = 1-norm of X ,defined as:
||X||_1 = (norm(L,1) + (1/variance)*N) %% relation between L matrix to be
%% determined and precision matrix.
Perhaps you can show a complete MATLAB/CVX code, which makes sense, and which includes all input data (use small matrices, such as 3 by 3 or 4 by 4).
The first thing you need to do is to understand the optimization problem you are solving, and given the input data, why it is a convex optimization problem.
No, that is not clear to me. But you are the one who wishes to solve it, so you should put in the effort to understand the paper, and exactly what convex optimization problem you are solving. And if there is no convex optimization problem resulting, then CVX can’t be used to solve it.