mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-28 13:48:56 +08:00
13 lines
179 B
Go
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
|
|
}
|