mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-28 13:48:56 +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
|
||
|
}
|