Learning with missing features (MNAR)Supervised Learning with Necessarily Missing DataIs there any difference between feature extraction and feature learning?Missing Categorical Features - no imputationDeploying the prediction model under missing values for test dataDoes encoding missing values help?Can we look just at the other features when we have a missing vaue?Imputation missing values other than using Mean, Median in pythonDealing with NaN (missing) values for Logistic Regression- Best practices?Balance data using different criteriaHow to deal with missing data for Bernoulli Naive Bayes?
Is there any evidence that Cleopatra and Caesarion considered fleeing to India to escape the Romans?
Mimic lecturing on blackboard, facing audience
Is this part of the description of the Archfey warlock's Misty Escape feature redundant?
Make a Bowl of Alphabet Soup
What are some good ways to treat frozen vegetables such that they behave like fresh vegetables when stir frying them?
Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?
Find the next value of this number series
What is Cash Advance APR?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
Is it allowed to activate the ability of multiple planeswalkers in a single turn?
How to preserve electronics (computers, iPads and phones) for hundreds of years
The Digit Triangles
In a multiple cat home, how many litter boxes should you have?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
Biological Blimps: Propulsion
Creating two special characters
Why do ¬, ∀ and ∃ have the same precedence?
Change the color of a single dot in `ddot` symbol
Review your own paper in Mathematics
How to explain what's wrong with this application of the chain rule?
Why is the Sun approximated as a black body at ~ 5800 K?
Shouldn’t conservatives embrace universal basic income?
Why do Radio Buttons not fill the entire outer circle?
How could a planet have erratic days?
Learning with missing features (MNAR)
Supervised Learning with Necessarily Missing DataIs there any difference between feature extraction and feature learning?Missing Categorical Features - no imputationDeploying the prediction model under missing values for test dataDoes encoding missing values help?Can we look just at the other features when we have a missing vaue?Imputation missing values other than using Mean, Median in pythonDealing with NaN (missing) values for Logistic Regression- Best practices?Balance data using different criteriaHow to deal with missing data for Bernoulli Naive Bayes?
$begingroup$
I want to learn from features that may have some missing informations. The value of the variable that's missing is related to the reason it's missing (MNAR)
To better understand my case, here is an example :
I want to learn a model for voice recognition. When using the model I'll know who will be speaking.
I have training data for those speakers, but I also have other data with speakers that will not use the model.
I don't want to add features for those speakers, only for those that will use the model.
How can I process the inputs before training the neural network without risking to damage the performance of the end users ?
For now I intend to use this method :
Each end user, for wich I know the identity, will have a dedicated feature. When training on speaker without dedicated feature :
- A feature that represent "have dedicated identity feature" will be set to -1.
- All identity features will be put to 0.
For example :
End user 1 → [1 -1 -1 ... 1]
End user 2 → [-1 1 -1 ... 1]
End user 2 → [-1 -1 1 ... 1]
...
speakers only for training → [0 0 0 ... -1]
Is this the right thing to do ? Is there a better way ?
P.S. - I can only modify the inputs, the neural network's architecture cannot be modified, so I can't use things like dropout.
machine-learning neural-network missing-data
$endgroup$
add a comment |
$begingroup$
I want to learn from features that may have some missing informations. The value of the variable that's missing is related to the reason it's missing (MNAR)
To better understand my case, here is an example :
I want to learn a model for voice recognition. When using the model I'll know who will be speaking.
I have training data for those speakers, but I also have other data with speakers that will not use the model.
I don't want to add features for those speakers, only for those that will use the model.
How can I process the inputs before training the neural network without risking to damage the performance of the end users ?
For now I intend to use this method :
Each end user, for wich I know the identity, will have a dedicated feature. When training on speaker without dedicated feature :
- A feature that represent "have dedicated identity feature" will be set to -1.
- All identity features will be put to 0.
For example :
End user 1 → [1 -1 -1 ... 1]
End user 2 → [-1 1 -1 ... 1]
End user 2 → [-1 -1 1 ... 1]
...
speakers only for training → [0 0 0 ... -1]
Is this the right thing to do ? Is there a better way ?
P.S. - I can only modify the inputs, the neural network's architecture cannot be modified, so I can't use things like dropout.
machine-learning neural-network missing-data
$endgroup$
add a comment |
$begingroup$
I want to learn from features that may have some missing informations. The value of the variable that's missing is related to the reason it's missing (MNAR)
To better understand my case, here is an example :
I want to learn a model for voice recognition. When using the model I'll know who will be speaking.
I have training data for those speakers, but I also have other data with speakers that will not use the model.
I don't want to add features for those speakers, only for those that will use the model.
How can I process the inputs before training the neural network without risking to damage the performance of the end users ?
For now I intend to use this method :
Each end user, for wich I know the identity, will have a dedicated feature. When training on speaker without dedicated feature :
- A feature that represent "have dedicated identity feature" will be set to -1.
- All identity features will be put to 0.
For example :
End user 1 → [1 -1 -1 ... 1]
End user 2 → [-1 1 -1 ... 1]
End user 2 → [-1 -1 1 ... 1]
...
speakers only for training → [0 0 0 ... -1]
Is this the right thing to do ? Is there a better way ?
P.S. - I can only modify the inputs, the neural network's architecture cannot be modified, so I can't use things like dropout.
machine-learning neural-network missing-data
$endgroup$
I want to learn from features that may have some missing informations. The value of the variable that's missing is related to the reason it's missing (MNAR)
To better understand my case, here is an example :
I want to learn a model for voice recognition. When using the model I'll know who will be speaking.
I have training data for those speakers, but I also have other data with speakers that will not use the model.
I don't want to add features for those speakers, only for those that will use the model.
How can I process the inputs before training the neural network without risking to damage the performance of the end users ?
For now I intend to use this method :
Each end user, for wich I know the identity, will have a dedicated feature. When training on speaker without dedicated feature :
- A feature that represent "have dedicated identity feature" will be set to -1.
- All identity features will be put to 0.
For example :
End user 1 → [1 -1 -1 ... 1]
End user 2 → [-1 1 -1 ... 1]
End user 2 → [-1 -1 1 ... 1]
...
speakers only for training → [0 0 0 ... -1]
Is this the right thing to do ? Is there a better way ?
P.S. - I can only modify the inputs, the neural network's architecture cannot be modified, so I can't use things like dropout.
machine-learning neural-network missing-data
machine-learning neural-network missing-data
asked Mar 18 at 23:15
Adrian B.Adrian B.
11
11
add a comment |
add a comment |
0
active
oldest
votes
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: "557"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
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%2fdatascience.stackexchange.com%2fquestions%2f47567%2flearning-with-missing-features-mnar%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
Thanks for contributing an answer to Data Science 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%2fdatascience.stackexchange.com%2fquestions%2f47567%2flearning-with-missing-features-mnar%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