Re: [Scikit-learn-general] Random Subspace Ensemble Method

2014-08-17 Thread Mathieu Blondel
I believe random subspace ensembles are subsumed by the BaggingClassifier / BaggingRegressor estimators. See the class documentation. The proportion of features used is controlled by max_features. M. On Mon, Aug 18, 2014 at 8:51 AM, Dayvid Victor wrote: > Hello Everybody, > > I was looking for

[Scikit-learn-general] Random Subspace Ensemble Method

2014-08-17 Thread Dayvid Victor
Hello Everybody, I was looking for a Random Subspace implementation and found only a Random Forest. Correct me if I'm wrong but the Random Subspace is a generalization of the Random Forest (it works with classifiers not based on decision tree). Is there any implementation of Random Subspace avail