Updated LinearSVC MultiLinearSVC classification (markdown)

Richard Townsend 2017-04-11 12:13:27 +01:00
parent 3920fe4237
commit 68fcd7a86d
1 changed files with 1 additions and 1 deletions

@ -1,4 +1,4 @@
Golearn includes implementation with [liblinear](http://www.csie.ntu.edu.tw/~cjlin/liblinear/), which can be used for logistic regression and also linear support vector classification. It's best suited to datasets containing only a large number of numeric attributes, which often occur in natural language processing.
Golearn includes [liblinear](http://www.csie.ntu.edu.tw/~cjlin/liblinear/), used for logistic regression and also linear support vector classification. It's best suited to datasets containing only a large number of numeric attributes, which often occur in natural language processing.
## LinearSVC
* The [LinearSVC](https://godoc.org/github.com/sjwhitworth/golearn/linear_models#LinearSVC) classifier outputs a binary class value (either 0 or 1).