Submitted by AutoModerator t3_10cn8pw in MachineLearning
trnka t1_j5kksex wrote
Reply to comment by Numerous-Carrot3910 in [D] Simple Questions Thread by AutoModerator
Hmm, you might also try feature selection. I'm not sure what you mean by not iterating, unless you mean recursive feature elimination? There are a lot of really fast correlation functions you can try for feature selection -- scikit-learn has some popular options. They run very quickly, and if you have lots of data you can probably do the feature selection part on a random subset of the training data.
Also, you could do things like dimensionality reduction learned from a subset of the training data, whether PCA or a NN approach.
Numerous-Carrot3910 t1_j5kuwul wrote
Yes, I was referring to recursive feature elimination. Thanks for the recommendations
Viewing a single comment thread. View all comments