Help understanding equation with $nabla_hat{x}$
$begingroup$
I have the following defined:
$hat{x} leftarrow epsilon x + (1-epsilon)tilde{x}$
and then this:
$lambda(||nabla_hat{x}D_w(hat{x})||_2-1)^2$
Now this is something I have to implement into a computer program, and I think I've got most of it, with the exception of $nabla_hat{x}$
All of the different x are vectors
Could someone please help me understand what it means?
Thank you in advance!
Edit for clarifications:
I'm implementing a Wasserstein GAN from the following paper: (https://arxiv.org/abs/1704.00028). Section 4, page 4, equation 3 contains the equation in question
$D_w$ is a neural network ( The discriminator in a GAN )
The second equation is something the authors of the paper have called Gradient Penalty and is supposed to be added to the calculated loss used to train the algorithm.
linear-algebra
$endgroup$
add a comment |
$begingroup$
I have the following defined:
$hat{x} leftarrow epsilon x + (1-epsilon)tilde{x}$
and then this:
$lambda(||nabla_hat{x}D_w(hat{x})||_2-1)^2$
Now this is something I have to implement into a computer program, and I think I've got most of it, with the exception of $nabla_hat{x}$
All of the different x are vectors
Could someone please help me understand what it means?
Thank you in advance!
Edit for clarifications:
I'm implementing a Wasserstein GAN from the following paper: (https://arxiv.org/abs/1704.00028). Section 4, page 4, equation 3 contains the equation in question
$D_w$ is a neural network ( The discriminator in a GAN )
The second equation is something the authors of the paper have called Gradient Penalty and is supposed to be added to the calculated loss used to train the algorithm.
linear-algebra
$endgroup$
$begingroup$
What is w in that expression?
$endgroup$
– I like Serena
Jan 17 at 8:32
$begingroup$
Would you be so kind to give some context? What is the general meaning of the 2nd equation, and what do you mean by implementing a computer program? Do you intend to, for example, solve a differential equation, or calculate the value of some known expression?
$endgroup$
– Aleksejs Fomins
Jan 17 at 8:46
$begingroup$
Edited question to clarify :-)
$endgroup$
– Covey
Jan 17 at 9:28
add a comment |
$begingroup$
I have the following defined:
$hat{x} leftarrow epsilon x + (1-epsilon)tilde{x}$
and then this:
$lambda(||nabla_hat{x}D_w(hat{x})||_2-1)^2$
Now this is something I have to implement into a computer program, and I think I've got most of it, with the exception of $nabla_hat{x}$
All of the different x are vectors
Could someone please help me understand what it means?
Thank you in advance!
Edit for clarifications:
I'm implementing a Wasserstein GAN from the following paper: (https://arxiv.org/abs/1704.00028). Section 4, page 4, equation 3 contains the equation in question
$D_w$ is a neural network ( The discriminator in a GAN )
The second equation is something the authors of the paper have called Gradient Penalty and is supposed to be added to the calculated loss used to train the algorithm.
linear-algebra
$endgroup$
I have the following defined:
$hat{x} leftarrow epsilon x + (1-epsilon)tilde{x}$
and then this:
$lambda(||nabla_hat{x}D_w(hat{x})||_2-1)^2$
Now this is something I have to implement into a computer program, and I think I've got most of it, with the exception of $nabla_hat{x}$
All of the different x are vectors
Could someone please help me understand what it means?
Thank you in advance!
Edit for clarifications:
I'm implementing a Wasserstein GAN from the following paper: (https://arxiv.org/abs/1704.00028). Section 4, page 4, equation 3 contains the equation in question
$D_w$ is a neural network ( The discriminator in a GAN )
The second equation is something the authors of the paper have called Gradient Penalty and is supposed to be added to the calculated loss used to train the algorithm.
linear-algebra
linear-algebra
edited Jan 17 at 13:16
Covey
asked Jan 17 at 8:13
CoveyCovey
32
32
$begingroup$
What is w in that expression?
$endgroup$
– I like Serena
Jan 17 at 8:32
$begingroup$
Would you be so kind to give some context? What is the general meaning of the 2nd equation, and what do you mean by implementing a computer program? Do you intend to, for example, solve a differential equation, or calculate the value of some known expression?
$endgroup$
– Aleksejs Fomins
Jan 17 at 8:46
$begingroup$
Edited question to clarify :-)
$endgroup$
– Covey
Jan 17 at 9:28
add a comment |
$begingroup$
What is w in that expression?
$endgroup$
– I like Serena
Jan 17 at 8:32
$begingroup$
Would you be so kind to give some context? What is the general meaning of the 2nd equation, and what do you mean by implementing a computer program? Do you intend to, for example, solve a differential equation, or calculate the value of some known expression?
$endgroup$
– Aleksejs Fomins
Jan 17 at 8:46
$begingroup$
Edited question to clarify :-)
$endgroup$
– Covey
Jan 17 at 9:28
$begingroup$
What is w in that expression?
$endgroup$
– I like Serena
Jan 17 at 8:32
$begingroup$
What is w in that expression?
$endgroup$
– I like Serena
Jan 17 at 8:32
$begingroup$
Would you be so kind to give some context? What is the general meaning of the 2nd equation, and what do you mean by implementing a computer program? Do you intend to, for example, solve a differential equation, or calculate the value of some known expression?
$endgroup$
– Aleksejs Fomins
Jan 17 at 8:46
$begingroup$
Would you be so kind to give some context? What is the general meaning of the 2nd equation, and what do you mean by implementing a computer program? Do you intend to, for example, solve a differential equation, or calculate the value of some known expression?
$endgroup$
– Aleksejs Fomins
Jan 17 at 8:46
$begingroup$
Edited question to clarify :-)
$endgroup$
– Covey
Jan 17 at 9:28
$begingroup$
Edited question to clarify :-)
$endgroup$
– Covey
Jan 17 at 9:28
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
In Linear Algebra the operator in question is called the Del operator, $nabla$ , and is defined such that:
$nabla = frac{partial}{partial x}mathbf{i} + frac{partial}{partial y}mathbf{j} + frac{partial}{partial z}mathbf{k}$.
The subscript used in your equation is $hat{x}$, but what is the vector in question. From what I can understand you have del acting on this function $D_{w}(hat{x})$ but the subscript might be restricting or changing what coordinate system Del is acting in.
I hope this helps.
$endgroup$
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
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
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2fmath.stackexchange.com%2fquestions%2f3076730%2fhelp-understanding-equation-with-nabla-hatx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
In Linear Algebra the operator in question is called the Del operator, $nabla$ , and is defined such that:
$nabla = frac{partial}{partial x}mathbf{i} + frac{partial}{partial y}mathbf{j} + frac{partial}{partial z}mathbf{k}$.
The subscript used in your equation is $hat{x}$, but what is the vector in question. From what I can understand you have del acting on this function $D_{w}(hat{x})$ but the subscript might be restricting or changing what coordinate system Del is acting in.
I hope this helps.
$endgroup$
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
add a comment |
$begingroup$
In Linear Algebra the operator in question is called the Del operator, $nabla$ , and is defined such that:
$nabla = frac{partial}{partial x}mathbf{i} + frac{partial}{partial y}mathbf{j} + frac{partial}{partial z}mathbf{k}$.
The subscript used in your equation is $hat{x}$, but what is the vector in question. From what I can understand you have del acting on this function $D_{w}(hat{x})$ but the subscript might be restricting or changing what coordinate system Del is acting in.
I hope this helps.
$endgroup$
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
add a comment |
$begingroup$
In Linear Algebra the operator in question is called the Del operator, $nabla$ , and is defined such that:
$nabla = frac{partial}{partial x}mathbf{i} + frac{partial}{partial y}mathbf{j} + frac{partial}{partial z}mathbf{k}$.
The subscript used in your equation is $hat{x}$, but what is the vector in question. From what I can understand you have del acting on this function $D_{w}(hat{x})$ but the subscript might be restricting or changing what coordinate system Del is acting in.
I hope this helps.
$endgroup$
In Linear Algebra the operator in question is called the Del operator, $nabla$ , and is defined such that:
$nabla = frac{partial}{partial x}mathbf{i} + frac{partial}{partial y}mathbf{j} + frac{partial}{partial z}mathbf{k}$.
The subscript used in your equation is $hat{x}$, but what is the vector in question. From what I can understand you have del acting on this function $D_{w}(hat{x})$ but the subscript might be restricting or changing what coordinate system Del is acting in.
I hope this helps.
answered Jan 17 at 13:38
C_RichmondC_Richmond
863
863
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
add a comment |
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
$begingroup$
Oh right. Thank you - this definitely helps!
$endgroup$
– Covey
Jan 18 at 9:09
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
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%2fmath.stackexchange.com%2fquestions%2f3076730%2fhelp-understanding-equation-with-nabla-hatx%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
$begingroup$
What is w in that expression?
$endgroup$
– I like Serena
Jan 17 at 8:32
$begingroup$
Would you be so kind to give some context? What is the general meaning of the 2nd equation, and what do you mean by implementing a computer program? Do you intend to, for example, solve a differential equation, or calculate the value of some known expression?
$endgroup$
– Aleksejs Fomins
Jan 17 at 8:46
$begingroup$
Edited question to clarify :-)
$endgroup$
– Covey
Jan 17 at 9:28