1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-28 13:48:56 +08:00
golearn/trees/decision_trees.go
2014-05-05 22:41:55 +01:00

13 lines
179 B
Go

package trees
import base "github.com/sjwhitworth/golearn/base"
type DecisionTree struct {
base.BaseEstimator
}
type Branch struct {
LeftBranch Branch
RightBranch Branch
}