This commit is contained in:
andrea 2019-11-28 19:33:04 +01:00
parent b63159cd62
commit df957e8448
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def get_learner(calibrate=False, kernel='linear'):
return SVC(kernel=kernel, probability=calibrate, cache_size=1000, C=op.set_c, random_state=1) return SVC(kernel=kernel, probability=calibrate, cache_size=1000, C=op.set_c, random_state=1)
def get_params(dense=False): # TODO kernel function could be usefull for meta-classifier def get_params(dense=False): # TODO kernel function could be useful for meta-classifier
if not op.optimc: if not op.optimc:
return None return None
c_range = [1e4, 1e3, 1e2, 1e1, 1, 1e-1] c_range = [1e4, 1e3, 1e2, 1e1, 1, 1e-1]