scikit-learn/scikit-learn

parallel votingClassifier prediction method needed

Open

#7,755 opened on 2016年10月26日

GitHub で見る
 (3 comments) (0 reactions) (0 assignees)Python (66,084 stars) (27,020 forks)batch import
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

コントリビューターガイド

parallel votingClassifier prediction method needed · scikit-learn/scikit-learn#7755 | Good First Issue