From 7e8eb70cd1a2f33416a227ca0629798dd64df8fc Mon Sep 17 00:00:00 2001 From: Stephen Whitworth Date: Mon, 5 May 2014 21:40:51 +0100 Subject: [PATCH] Implemented batch and stochastic gradient descent --- trees/decision_trees.go | 12 ------------ trees/random_forests.go | 0 trees/trees.go | 2 -- 3 files changed, 14 deletions(-) delete mode 100644 trees/decision_trees.go delete mode 100644 trees/random_forests.go delete mode 100644 trees/trees.go diff --git a/trees/decision_trees.go b/trees/decision_trees.go deleted file mode 100644 index 0bfc6b0..0000000 --- a/trees/decision_trees.go +++ /dev/null @@ -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 -} diff --git a/trees/random_forests.go b/trees/random_forests.go deleted file mode 100644 index e69de29..0000000 diff --git a/trees/trees.go b/trees/trees.go deleted file mode 100644 index f847e5d..0000000 --- a/trees/trees.go +++ /dev/null @@ -1,2 +0,0 @@ -// Package trees provides a number of tree based ensemble learners. -package trees