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-04-30 08:57:13 +01:00

14 lines
174 B
Go

package lm
import (
"fmt"
mat "github.com/skelterjohn/go.matrix"
base "golearn/base"
util "golearn/utilities"
"math"
)
type LinearModel struct {
base.BaseRegressor
}