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

13 lines
207 B
Go
Raw Normal View History

2014-04-30 08:57:13 +01:00
package lm
2014-05-03 23:08:43 +01:00
<<<<<<< HEAD
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-05-03 23:08:43 +01:00
=======
2014-04-30 08:57:13 +01:00
type LinearModel struct {
// base.BaseRegressor
2014-05-03 23:08:43 +01:00
>>>>>>> 798751c839ea79f6dff13e790f80a4d5bcbfea68
2014-04-30 08:57:13 +01:00
}