mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
14 lines
174 B
Go
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
|
|
}
|