1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-05-07 19:29:19 +08:00
golearn/base/classifier.go
2014-01-05 00:23:31 +00:00

17 lines
235 B
Go

package base
import (
mat "github.com/skelterjohn/go.matrix"
)
type BaseClassifier struct {
Data mat.DenseMatrix
Name string
Labels []string
}
type BaseRegressor struct {
Data mat.DenseMatrix
Name string
Labels []float64
}