sklearn.svm.LinearSVC

From GM-RKB
Jump to navigation Jump to search

A sklearn.svm.LinearSVC is an Linear Support Vector Classification System within sklearn.svm module.



References

2018a

  • (Scikit Learn, 2017B) ⇒ http://scikit-learn.org/stable/modules/generated/sklearn.svm.LinearSVC.html
    • QUOTE: class sklearn.svm.LinearSVC(penalty=’l2’, ...)source

      Linear Support Vector Classification.

      Similar to SVC with parameter kernel=’linear’, but implemented in terms of liblinear rather than libsvm, so it has more flexibility in the choice of penalties and loss functions and should scale better to large numbers of samples.

      This class supports both dense and sparse input and the multiclass support is handled according to a one-vs-the-rest scheme.

2018b