1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-26 13:49:14 +08:00
golearn/lm/linear_regression.go
2014-05-01 21:20:44 +01:00

8 lines
88 B
Go

package lm
import base "golearn/base"
type LinearModel struct {
base.BaseEstimator
}