SVC constructor

SVC(
  1. List supportVectors,
  2. List dualCoef,
  3. List intercept,
  4. List nSupport,
  5. List<int> classes,
  6. String kernel,
  7. double gamma,
  8. double coef0,
  9. int degree,
)

To manually instantiate the SVC. The parameters are lifted directly from scikit-learn. See the attributes here: https://scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html

Implementation

SVC(this.supportVectors, this.dualCoef, this.intercept, this.nSupport,
    this.classes, this.kernel, this.gamma, this.coef0, this.degree);