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?













0












$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.










share|improve this question









$endgroup$
















    0












    $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.










    share|improve this question









    $endgroup$














      0












      0








      0





      $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.










      share|improve this question









      $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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 18 at 23:15









      Adrian B.Adrian B.

      11




      11




















          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
          );



          );













          draft saved

          draft discarded


















          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















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Marja Vauras Lähteet | Aiheesta muualla | NavigointivalikkoMarja Vauras Turun yliopiston tutkimusportaalissaInfobox OKSuomalaisen Tiedeakatemian varsinaiset jäsenetKasvatustieteiden tiedekunnan dekaanit ja muu johtoMarja VaurasKoulutusvienti on kestävyys- ja ketteryyslaji (2.5.2017)laajentamallaWorldCat Identities0000 0001 0855 9405n86069603utb201588738523620927

          Which is better: GPT or RelGAN for text generation?2019 Community Moderator ElectionWhat is the difference between TextGAN and LM for text generation?GANs (generative adversarial networks) possible for text as well?Generator loss not decreasing- text to image synthesisChoosing a right algorithm for template-based text generationHow should I format input and output for text generation with LSTMsGumbel Softmax vs Vanilla Softmax for GAN trainingWhich neural network to choose for classification from text/speech?NLP text autoencoder that generates text in poetic meterWhat is the interpretation of the expectation notation in the GAN formulation?What is the difference between TextGAN and LM for text generation?How to prepare the data for text generation task

          Is this part of the description of the Archfey warlock's Misty Escape feature redundant?When is entropic ward considered “used”?How does the reaction timing work for Wrath of the Storm? Can it potentially prevent the damage from the triggering attack?Does the Dark Arts Archlich warlock patrons's Arcane Invisibility activate every time you cast a level 1+ spell?When attacking while invisible, when exactly does invisibility break?Can I cast Hellish Rebuke on my turn?Do I have to “pre-cast” a reaction spell in order for it to be triggered?What happens if a Player Misty Escapes into an Invisible CreatureCan a reaction interrupt multiattack?Does the Fiend-patron warlock's Hurl Through Hell feature dispel effects that require the target to be on the same plane as the caster?What are you allowed to do while using the Warlock's Eldritch Master feature?