sanity
sanity

Reputation: 35772

Is there a well-designed, maintained decision tree learning library for Java?

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

Answers (3)

user3276964
user3276964

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

carlosdc
carlosdc

Reputation: 12142

I would suggest you take a look at JBoost.

Upvotes: 3

Sean Owen
Sean Owen

Reputation: 66886

Apache Mahout has a decision tree implementation based on random forests. It is Hadoop-based however, not plain Java.

Upvotes: 1

Related Questions