Skip to content
/ ID3 Public

A program that classifies examples using the ID3 algorithm.

Notifications You must be signed in to change notification settings

luntropy/ID3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ID3

Purpose

The objective of the program is to classify different examples using the ID3 algorithm.

Rules

  • To train and validate the data is used 10-fold cross-validation.
  • The data is randomly separated in 10 sets on each program start.
  • Use different pruning methods to avoid overfitting.

About the program

The program is using the ID3 algorithm to classify different examples in two classes - recurrence events and no recurrence events. Also it compares two ways of pre-pruning - based on examples left, in this case 15, and based on max depth, in this case 2. The program displays results when no pruning is done as well.

To run the program

  • Run python3 main.py

Output

  • Outputs accuracy for each of the 10 trainings and the average accuracy for a summary assessment of the classifier.
  • The information is displayed to compare classification with no pruning, pre-pruning based on examples and pre-pruning based on depth.

Example

Example

About

A program that classifies examples using the ID3 algorithm.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages