mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-05-01 22:18:10 +08:00
16 lines
172 B
Go
16 lines
172 B
Go
package base
|
|
|
|
// Specifies the base interfaces
|
|
type Estimator interface {
|
|
Fit()
|
|
Summarise()
|
|
}
|
|
|
|
type Predictor interface {
|
|
Predict()
|
|
}
|
|
|
|
type Model interface {
|
|
Score()
|
|
}
|