Any differences in cvxpy library between l2 norm and sum_of_square?
I am trying to use cvxpy lib to solve a very simple least square problem. But I found that cvxpy gave me very different results when I use sum_squares and norm(x,2) as loss functions.
The same happens when I try the l1 norm and sum of absolute values.
Does these differences come from mathematically the optimization problem definition, or the implementation of the library?
Here is my code example:
s = cvx.Variable(n)
constrains = [cvx.sum(s)==1 , s>=0, s<=1]
prob = cvx.Problem(cvx.Minimize(cvx.sum_squares(A * s - y)), constrains)
prob = cvx.Problem(cvx.Minimize(cvx.norm(A*s - y ,2)), constrains)
Both y and s are vectors representing histograms. y is the histogram of randomized data, and s is the original histogram that I want to recover. A is a n*m "transition" matrix of probabilities how s is randomized to y.
The following are the histograms of variable s:
Using sum_of_square
Using norm2
convex-optimization cvxpy norm
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I am trying to use cvxpy lib to solve a very simple least square problem. But I found that cvxpy gave me very different results when I use sum_squares and norm(x,2) as loss functions.
The same happens when I try the l1 norm and sum of absolute values.
Does these differences come from mathematically the optimization problem definition, or the implementation of the library?
Here is my code example:
s = cvx.Variable(n)
constrains = [cvx.sum(s)==1 , s>=0, s<=1]
prob = cvx.Problem(cvx.Minimize(cvx.sum_squares(A * s - y)), constrains)
prob = cvx.Problem(cvx.Minimize(cvx.norm(A*s - y ,2)), constrains)
Both y and s are vectors representing histograms. y is the histogram of randomized data, and s is the original histogram that I want to recover. A is a n*m "transition" matrix of probabilities how s is randomized to y.
The following are the histograms of variable s:
Using sum_of_square
Using norm2
convex-optimization cvxpy norm
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
it would help if you share the results that you are getting along with the expected results.
– noobcode
Dec 27 '18 at 18:24
@noocode I just updated the question. Do you have any clue of how this happens?
– skinfaxi
Dec 27 '18 at 19:16
Add some reproducible example and check the solver state. Hard to reason about your problem. But in the core sum of squares and norm are two very different things. E.g. qp vs. Socp optimization problem. Depending on what cvxpy does, in some extreme case it might even chose a different solver (as different opt problems) although i doubt it does. I would expect the norm-prob to be the better/more stable formulation.
– sascha
Dec 27 '18 at 21:07
I'm not sure but CVXR has some interesting material on the subject: cvxr.com/cvx/doc/advanced.html#eliminating-quadratic-forms I'd be interested if someone can interpret that into an answer.
– Jacques Kvam
Dec 29 '18 at 22:50
add a comment |
I am trying to use cvxpy lib to solve a very simple least square problem. But I found that cvxpy gave me very different results when I use sum_squares and norm(x,2) as loss functions.
The same happens when I try the l1 norm and sum of absolute values.
Does these differences come from mathematically the optimization problem definition, or the implementation of the library?
Here is my code example:
s = cvx.Variable(n)
constrains = [cvx.sum(s)==1 , s>=0, s<=1]
prob = cvx.Problem(cvx.Minimize(cvx.sum_squares(A * s - y)), constrains)
prob = cvx.Problem(cvx.Minimize(cvx.norm(A*s - y ,2)), constrains)
Both y and s are vectors representing histograms. y is the histogram of randomized data, and s is the original histogram that I want to recover. A is a n*m "transition" matrix of probabilities how s is randomized to y.
The following are the histograms of variable s:
Using sum_of_square
Using norm2
convex-optimization cvxpy norm
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am trying to use cvxpy lib to solve a very simple least square problem. But I found that cvxpy gave me very different results when I use sum_squares and norm(x,2) as loss functions.
The same happens when I try the l1 norm and sum of absolute values.
Does these differences come from mathematically the optimization problem definition, or the implementation of the library?
Here is my code example:
s = cvx.Variable(n)
constrains = [cvx.sum(s)==1 , s>=0, s<=1]
prob = cvx.Problem(cvx.Minimize(cvx.sum_squares(A * s - y)), constrains)
prob = cvx.Problem(cvx.Minimize(cvx.norm(A*s - y ,2)), constrains)
Both y and s are vectors representing histograms. y is the histogram of randomized data, and s is the original histogram that I want to recover. A is a n*m "transition" matrix of probabilities how s is randomized to y.
The following are the histograms of variable s:
Using sum_of_square
Using norm2
convex-optimization cvxpy norm
convex-optimization cvxpy norm
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Dec 27 '18 at 19:14
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Dec 27 '18 at 18:06
skinfaxi
11
11
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
skinfaxi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
it would help if you share the results that you are getting along with the expected results.
– noobcode
Dec 27 '18 at 18:24
@noocode I just updated the question. Do you have any clue of how this happens?
– skinfaxi
Dec 27 '18 at 19:16
Add some reproducible example and check the solver state. Hard to reason about your problem. But in the core sum of squares and norm are two very different things. E.g. qp vs. Socp optimization problem. Depending on what cvxpy does, in some extreme case it might even chose a different solver (as different opt problems) although i doubt it does. I would expect the norm-prob to be the better/more stable formulation.
– sascha
Dec 27 '18 at 21:07
I'm not sure but CVXR has some interesting material on the subject: cvxr.com/cvx/doc/advanced.html#eliminating-quadratic-forms I'd be interested if someone can interpret that into an answer.
– Jacques Kvam
Dec 29 '18 at 22:50
add a comment |
it would help if you share the results that you are getting along with the expected results.
– noobcode
Dec 27 '18 at 18:24
@noocode I just updated the question. Do you have any clue of how this happens?
– skinfaxi
Dec 27 '18 at 19:16
Add some reproducible example and check the solver state. Hard to reason about your problem. But in the core sum of squares and norm are two very different things. E.g. qp vs. Socp optimization problem. Depending on what cvxpy does, in some extreme case it might even chose a different solver (as different opt problems) although i doubt it does. I would expect the norm-prob to be the better/more stable formulation.
– sascha
Dec 27 '18 at 21:07
I'm not sure but CVXR has some interesting material on the subject: cvxr.com/cvx/doc/advanced.html#eliminating-quadratic-forms I'd be interested if someone can interpret that into an answer.
– Jacques Kvam
Dec 29 '18 at 22:50
it would help if you share the results that you are getting along with the expected results.
– noobcode
Dec 27 '18 at 18:24
it would help if you share the results that you are getting along with the expected results.
– noobcode
Dec 27 '18 at 18:24
@noocode I just updated the question. Do you have any clue of how this happens?
– skinfaxi
Dec 27 '18 at 19:16
@noocode I just updated the question. Do you have any clue of how this happens?
– skinfaxi
Dec 27 '18 at 19:16
Add some reproducible example and check the solver state. Hard to reason about your problem. But in the core sum of squares and norm are two very different things. E.g. qp vs. Socp optimization problem. Depending on what cvxpy does, in some extreme case it might even chose a different solver (as different opt problems) although i doubt it does. I would expect the norm-prob to be the better/more stable formulation.
– sascha
Dec 27 '18 at 21:07
Add some reproducible example and check the solver state. Hard to reason about your problem. But in the core sum of squares and norm are two very different things. E.g. qp vs. Socp optimization problem. Depending on what cvxpy does, in some extreme case it might even chose a different solver (as different opt problems) although i doubt it does. I would expect the norm-prob to be the better/more stable formulation.
– sascha
Dec 27 '18 at 21:07
I'm not sure but CVXR has some interesting material on the subject: cvxr.com/cvx/doc/advanced.html#eliminating-quadratic-forms I'd be interested if someone can interpret that into an answer.
– Jacques Kvam
Dec 29 '18 at 22:50
I'm not sure but CVXR has some interesting material on the subject: cvxr.com/cvx/doc/advanced.html#eliminating-quadratic-forms I'd be interested if someone can interpret that into an answer.
– Jacques Kvam
Dec 29 '18 at 22:50
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
skinfaxi is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53949115%2fany-differences-in-cvxpy-library-between-l2-norm-and-sum-of-square%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
skinfaxi is a new contributor. Be nice, and check out our Code of Conduct.
skinfaxi is a new contributor. Be nice, and check out our Code of Conduct.
skinfaxi is a new contributor. Be nice, and check out our Code of Conduct.
skinfaxi is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53949115%2fany-differences-in-cvxpy-library-between-l2-norm-and-sum-of-square%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
it would help if you share the results that you are getting along with the expected results.
– noobcode
Dec 27 '18 at 18:24
@noocode I just updated the question. Do you have any clue of how this happens?
– skinfaxi
Dec 27 '18 at 19:16
Add some reproducible example and check the solver state. Hard to reason about your problem. But in the core sum of squares and norm are two very different things. E.g. qp vs. Socp optimization problem. Depending on what cvxpy does, in some extreme case it might even chose a different solver (as different opt problems) although i doubt it does. I would expect the norm-prob to be the better/more stable formulation.
– sascha
Dec 27 '18 at 21:07
I'm not sure but CVXR has some interesting material on the subject: cvxr.com/cvx/doc/advanced.html#eliminating-quadratic-forms I'd be interested if someone can interpret that into an answer.
– Jacques Kvam
Dec 29 '18 at 22:50