Updated Trees (markdown)

Richard Townsend 2014-07-26 05:45:53 -07:00
parent da094f8aa8
commit 99d3fbf29e
1 changed files with 4 additions and 1 deletions

@ -7,4 +7,7 @@ ID3 is a decision tree induction algorithm which splits on the Attribute which g
Random Trees are structurally identical to those generated by ID3, but the split Attribute is chosen randomly. Golearn's implementation allows you to choose up to *k* nodes for consideration at each split.
##Random forests
Random forests are a bagged ensemble technique which combines multiple Random Trees and outputs a classification via a majority vote.
Random forests are a bagged ensemble technique which combines multiple Random Trees and outputs a classification via a majority vote.
**See also:
[`examples/knnclassifier/knnclassifier_iris.go`](https://github.com/sjwhitworth/golearn/blob/master/examples/knnclassifier/knnclassifier_iris.go)**