@@ -539,13 +539,13 @@ def search(self):
539
539
parser .add_argument ('--problem' , type = str , default = 'bc' , help = 'choose the problem' )
540
540
parser .add_argument ('--data_id' , type = int , default = - 1 , help = 'specific run id' )
541
541
parser .add_argument ('--obj_id' , type = int , default = - 1 , help = 'objective to split' )
542
- parser .add_argument ('--kernel' , type = str , default = 'poly ' , help = 'kernel type of svm' )
542
+ parser .add_argument ('--kernel' , type = str , default = 'rbf ' , help = 'kernel type of svm' )
543
543
parser .add_argument ('--gamma' , type = str , default = 'scale' , help = 'auto or scale' )
544
544
parser .add_argument ('--degree' , type = int , default = 4 , help = 'svm degree' )
545
545
parser .add_argument ('--iter' , type = int , default = 18 , help = 'total iterations' )
546
546
parser .add_argument ('--sample_num' , type = int , default = 5 , help = 'sample numsbers per iteration' )
547
547
parser .add_argument ('--runs' , type = int , default = 5 , help = 'total runs' )
548
- parser .add_argument ('--cp' , type = float , default = 15 , help = 'cp value in MCTS' )
548
+ parser .add_argument ('--cp' , type = float , default = 18 , help = 'cp value in MCTS' )
549
549
parser .add_argument ('--sample_method' , type = str , default = 'bayesian' , help = 'bayesian, cmaes or random' )
550
550
parser .add_argument ('--cmaes_method' , type = str , default = 'lamcts' , help = 'lamcts or vanilla' )
551
551
parser .add_argument ('--split_method' , type = str , default = 'dominance' , help = 'dominance or regressor' )
0 commit comments