mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-05-05 19:30:19 +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
|
||
|
}
|