https://github.com/saebyn/java-decision-tree
A decision tree class in Java.
https://github.com/saebyn/java-decision-tree
Last synced: 7 months ago
JSON representation
A decision tree class in Java.
- Host: GitHub
- URL: https://github.com/saebyn/java-decision-tree
- Owner: saebyn
- License: bsd-3-clause
- Created: 2010-10-08T22:04:20.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2011-04-23T00:52:54.000Z (about 15 years ago)
- Last Synced: 2024-04-17T02:00:04.014Z (about 2 years ago)
- Language: Java
- Homepage:
- Size: 709 KB
- Stars: 44
- Watchers: 6
- Forks: 29
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
- awesome-java - Java Decision Tree
README
Copyright(c) 2011 John Weaver.
All Rights Reserved.
Source code licensed under the BSD license. Please see the LICENSE file for details.
decision-tree
=============
This package consists of several Java classes to construct and apply a decision
tree to a attribute set. It allows for pluggable algorithms to construct the
tree. The decision tree is constructed from a series of examples of attributes,
where each example either has each of the attributes or does not, and each has
a specified outcome of either true or false. The resulting decision tree is a
binary tree where each leaf node represents the presents or absence of each
attribute named along the path to the root node and the resulting outcome for
the set of decisions.
Dependencies
------------
* Uses SLF4J for logging.