Skip to content

Commit

Permalink
Merge pull request #43 from salunkheketki19/master
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
igrigorik committed Oct 27, 2018
2 parents 2486d0d + 4862fc4 commit e30c188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ A Ruby library which implements [ID3 (information gain)](https://en.wikipedia.or


## Implementation ## Implementation


- Ruleset is a class that trains an ID3Tree with 2/3 of the training data, converts it into a set of rules and prunes the rules with the remaining 1/3 of the training data (in a [C4.5](https://en.wikipedia.org/wiki/C4.5_algorithm) way). - Ruleset is a class that trains an ID3Tree with 2/3 of the training data, converts it into set of rules and prunes the rules with the remaining 1/3 of the training data (in a [C4.5](https://en.wikipedia.org/wiki/C4.5_algorithm) way).
- Bagging is a bagging-based trainer (quite obvious), which trains 10 Ruleset trainers and when predicting chooses the best output based on voting. - Bagging is a bagging-based trainer (quite obvious), which trains 10 Ruleset trainers and when predicting chooses the best output based on voting.


[Blog post with explanation & examples](http://www.igvita.com/2007/04/16/decision-tree-learning-in-ruby/) [Blog post with explanation & examples](http://www.igvita.com/2007/04/16/decision-tree-learning-in-ruby/)
Expand Down

0 comments on commit e30c188

Please sign in to comment.