mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-05-07 19:29:19 +08:00
17 lines
235 B
Go
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
|
|
} |