Attribute selection in h2o

孤街醉人 提交于 2019-12-07 22:28:51

问题


I am very beginner in h2o and I want to know if there is any attribute selection capabilities in h2o framework so to be applied in h2oframes?


回答1:


No there are not currently feature selection functions in H2O -- my advice would be to use Lasso regression (in H2O this means use GLM with alpha = 1.0) to do the feature selection, or simply allow whatever machine learning algorithm (e.g. GBM) you are planning to use to use all the features (they'll tend to ignore the bad ones, but it could still degrade performance of the algorithm to have bad features in the training data).

If you'd like, you can make a feature request by filling out a ticket on the H2O-3 JIRA. This seems like a nice feature to have.




回答2:


In my opinion, Yes

My way is use automl to train your data.

after training, you can get a lot of model.

use h2o.get_model method or H2O server page to watch some model you like.

you can get VARIABLE IMPORTANCES frame.

then pick your features.



来源:https://stackoverflow.com/questions/44521080/attribute-selection-in-h2o

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!