1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-28 13:48:56 +08:00

Implemented batch and stochastic gradient descent

This commit is contained in:
Stephen Whitworth 2014-05-05 21:40:51 +01:00
parent cd43a6565d
commit 7e8eb70cd1
3 changed files with 0 additions and 14 deletions

View File

@ -1,12 +0,0 @@
package trees
import base "github.com/sjwhitworth/golearn/base"
type DecisionTree struct {
base.BaseEstimator
}
type Branch struct {
LeftBranch Branch
RightBranch Branch
}

View File

@ -1,2 +0,0 @@
// Package trees provides a number of tree based ensemble learners.
package trees