摘要: from sklearn.model_selection import GridSearchCV param_grid = {'C': np.arange(1e-05, 3, 0.1)} scoring = {'Accuracy': 'accuracy', 'AUC': 'roc_auc', 'Log_loss': 'neg_log_loss'} gs = GridSearchCV(Logis... 阅读全文
posted @ 2018-11-23 16:20 figo1421 阅读(282) 评论(0) 推荐(0) 编辑