An implementation of the ID3 Decision Tree algorithm in Java from scratch.
Go to file
2020-07-11 12:31:27 +00:00
src/com first commit 2020-01-18 22:11:47 +05:30
.classpath first commit 2020-01-18 22:11:47 +05:30
.gitignore first commit 2020-01-18 22:11:47 +05:30
.project first commit 2020-01-18 22:11:47 +05:30
ID3.iml first commit 2020-01-18 22:11:47 +05:30
pom.xml first commit 2020-01-18 22:11:47 +05:30
programSource.cl first commit 2020-01-18 22:11:47 +05:30
properties.txt first commit 2020-01-18 22:11:47 +05:30
Readme.md Added Readme 2020-07-11 12:31:27 +00:00
SplitDataSet.cl first commit 2020-01-18 22:11:47 +05:30
SumReduction.cl first commit 2020-01-18 22:11:47 +05:30

An implementation of the ID3 Decision Tree algorithm in Java from scratch.

The application reads data from a mysql database. The algorithm can be run on said data with the click of a button.
There's also a panel which can be use to run predictions using the created model and supplied test data.

Comes with a GUI made with Swing.