1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-05-01 22:18:10 +08:00
golearn/base/predictor.go
2014-04-30 08:57:13 +01:00

16 lines
172 B
Go

package base
// Specifies the base interfaces
type Estimator interface {
Fit()
Summarise()
}
type Predictor interface {
Predict()
}
type Model interface {
Score()
}