Deal with missing data? #277
-
Is the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
1: The optimizer cannot handle NaN entries in the training/input data. You have to do the data cleaning, drop factors, or whatever else you might like to do as part of the pre-processing of data. Normalization of data is handled by the optimizer such that you can keep input and output in real space. 2: If you have a dataset and wish to drop factors, the best way is to drop the factors in your dataset, initialize a new Optimizer object, define the space in the new optimizer such that it fits your current wanted factors, and train the new optimizer using tell([input data]) Hope that helps |
Beta Was this translation helpful? Give feedback.
1: The optimizer cannot handle NaN entries in the training/input data. You have to do the data cleaning, drop factors, or whatever else you might like to do as part of the pre-processing of data. Normalization of data is handled by the optimizer such that you can keep input and output in real space.
2: If you have a dataset and wish to drop factors, the best way is to drop the factors in your dataset, initialize a new Optimizer object, define the space in the new optimizer such that it fits your current wanted factors, and train the new optimizer using tell([input data])
Hope that helps