mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00

Requires an additional step to install: - cd /tmp && - wget https://github.com/cjlin1/liblinear/archive/v241.tar.gz - tar xvf v241.tar.gz - cd liblinear-241 - make lib - sudo install -vm644 linear.h /usr/include - sudo install -vm755 liblinear.so.4 /usr/lib - sudo ln -sfv liblinear.so.4 /usr/lib/liblinear.so
40 lines
972 B
Go
40 lines
972 B
Go
package linear_models
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/sjwhitworth/golearn/base"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestLogisticRegression(t *testing.T) {
|
|
Convey("Given labels, a classifier and data", t, func() {
|
|
// Load data
|
|
X, err := base.ParseCSVToInstances("train.csv", false)
|
|
So(err, ShouldEqual, nil)
|
|
Y, err := base.ParseCSVToInstances("test.csv", false)
|
|
So(err, ShouldEqual, nil)
|
|
|
|
// Setup the problem
|
|
lr, err := NewLogisticRegression("l2", 1.0, 1e-6)
|
|
So(err, ShouldBeNil)
|
|
|
|
lr.Fit(X)
|
|
|
|
Convey("When predicting the label of first vector", func() {
|
|
Z, err := lr.Predict(Y)
|
|
So(err, ShouldEqual, nil)
|
|
Convey("The result should be 1", func() {
|
|
So(Z.RowString(0), ShouldEqual, "1")
|
|
})
|
|
})
|
|
Convey("When predicting the label of second vector", func() {
|
|
Z, err := lr.Predict(Y)
|
|
So(err, ShouldEqual, nil)
|
|
Convey("The result should be -1", func() {
|
|
So(Z.RowString(1), ShouldEqual, "0")
|
|
})
|
|
})
|
|
})
|
|
}
|