mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
8 lines
88 B
Go
8 lines
88 B
Go
package lm
|
|
|
|
import base "golearn/base"
|
|
|
|
type LinearModel struct {
|
|
base.BaseEstimator
|
|
}
|