LinearSVC constructor

LinearSVC(
  1. List coef,
  2. List intercept,
  3. List classes
)

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

Implementation

LinearSVC(this.coef, this.intercept, this.classes);