摘要: 1 clf = tree.DecisionTreeClassifier() 2 3 ''' 4 5 GridSearchCV search the best params 6 ''' 7 pipeline = Pipeline([('tree', clf), ("svm", svm)]) 8 9 1 阅读全文
posted @ 2018-01-15 09:41 shizhenqiang 阅读(1094) 评论(0) 推荐(0) 编辑