rene-aguirre / C45algorithm

Implementation of C4.5 algorithm in python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is an implementation of C4.5 algorithm
(http://en.wikipedia.org/wiki/C4.5_algorithm).

Data table has folowing format:
{
    "<column name>': [<column values>],
    "<column name>': [<column values>],
    ...
}


The main functions are located in file mine.py:
- "mine_c45" is an implementation of the C4.5 algorithm;
- "tree_to_rules" is a function for generate rules from desicion tree.


Author: Timofey Trukhanov "timofey.trukhanov@gmail.com"

About

Implementation of C4.5 algorithm in python.