1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-28 13:48:56 +08:00
golearn/lm/linear_regression.go

8 lines
88 B
Go
Raw Normal View History

2014-04-30 08:57:13 +01:00
package lm
2014-05-01 21:20:44 +01:00
import base "golearn/base"
2014-04-30 08:57:13 +01:00
type LinearModel struct {
2014-05-01 21:20:44 +01:00
base.BaseEstimator
2014-04-30 08:57:13 +01:00
}