We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to deal with missing values in the input data set?
The text was updated successfully, but these errors were encountered:
it depends on the base estimators. For instance, xgboost/lightgbm can handle None values in attributes without preprocessing, whereas scikit-learn requires to replace missing values using one-hot encoding or filling some numbers such as mean/median. details can be found: dmlc/xgboost#21 you can also write your own classifiers as base estimator with such features. e.g., https://stats.stackexchange.com/questions/98953/why-doesnt-random-forest-handle-missing-values-in-predictors
Sorry, something went wrong.
No branches or pull requests
How to deal with missing values in the input data set?
The text was updated successfully, but these errors were encountered: