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