scikit-learn/scikit-learn
GitHub で見るparallel votingClassifier prediction method needed
Open
#7,755 opened on 2016年10月26日
help wantedmodule:ensemble
説明
Hi there: I am using a really big jungle of single classifiers for an ensemble voting, something like:
emclf = VotingClassifier(estimators=est_list,n_jobs=-1) the est_list has about 300 classifiers. ---->that's all good and thank you folks.
However, when I am done training and doing predictions, like :
prd = emclf.predict(test_x)
the prediction method is not conducted in a parallel way, which became a bottleneck for the performance.
Is that possible to make this predict step parallel? thanks