Concept

sklearn.svm.SVC

This function creates a support vector classifier (SVC) object. Two important parameters are:

  • C: Regularization parameter. In other words, this controls the cost of misclassification on the training data.
  • kernel: specifies the kernel type to be used in the algorithm. This parameter can be set to "linear", "poly", "rbf", "sigmoid", or "precomputed"

0

1

Updated 2021-01-29

Tags

Data Science