Daniel A. White
Daniel A. White

Reputation: 190935

General Purpose Decision Tree Algorithm Code Implementations

Are there any well-designed, general purpose decision tree implementations for iPhone or Java? I know with LINQ it would be quite trivial, but with Objective C and Java, it would be much more complex.

Basically, I want to drill down a set of objects based off any number of qualifications or attributes in my apps.

Upvotes: 1

Views: 1549

Answers (1)

dsimcha
dsimcha

Reputation: 68740

You could try Weka. The API is somewhat obtuse and makes simple things complicated, but it's a very good machine learning library and it even comes with a GUI front end if you want to play around with the classes interactively before writing code that uses them programmatically.

Upvotes: 2

Related Questions