Reputation: 35772
I need a decision tree learning library for Java. I've looked at both jaDTi, and Weka, but neither is up to contemporary standards of library design.
For example, both still use non-generic Vector objects everywhere, and neither makes it easy to supply training data programmatically, they both expect data to be loaded from a file or a database.
Upvotes: 5
Views: 5226
Reputation: 61
Kind of old post but there is a very primitive Java based decision tree AI on Github
Open Source Project: TaiTree
Upvotes: 0
Reputation: 66886
Apache Mahout has a decision tree implementation based on random forests. It is Hadoop-based however, not plain Java.
Upvotes: 1