网格搜索法可以用来寻找合适的参数,尝试所有可能的参数组合。sklearn提供的GridSearchCV类,可以通过字典来提供分类器或回归器的类型对象。字典的键我们将要调整的参数,而字典的值就是需要尝试的参数值的相应列表。
from sklearn.svm import SVC
from sklearn.grid_search import GridSearchCV
from pprint import PrettyPrinter
import numpy as np
def classify(x,y):
clf = GridSearchCV(SVC(random_state=42,max_iter=100),{
'kernel':['linear',