标签: python scikit-learn grid-search
我使用grid_params对我的训练数据进行网格搜索。最后,我想在测试数据上运行一些最佳估算器的predict_proba,但我只能从grid_search获得best_estimator [grid_search_best_estimator_.predict_proba(X)]
我的问题是"如何在scikit-learn grid_search中的不同数据上运行前n个估算器的predict_proba?