SVR constructor

SVR(
  1. List supportVectors,
  2. List dualCoef,
  3. List intercept,
  4. List nSupport,
  5. String kernel,
  6. double gamma,
  7. double coef0,
  8. 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

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