Hi everyone. i find this section in the book not very informative. Page 85/86 talks about using the SVM learner but introduces something new: type="C-classification" . No further elaboration is presented as to what this changes, what other options exist and what's the default.
the code in question is the following:
learner = lrn("classif.svm",
type = "C-classification",
kernel = "radial",
cost = to_tune(1e-1, 1e5),
gamma = to_tune(1e-1, 1)
)
learner
can anyone please clarify what this is about and provide the other options. THANK YOU ALL.
Hi everyone. i find this section in the book not very informative. Page 85/86 talks about using the SVM learner but introduces something new: type="C-classification" . No further elaboration is presented as to what this changes, what other options exist and what's the default.
the code in question is the following:
can anyone please clarify what this is about and provide the other options. THANK YOU ALL.