mikesiers / wattle

A generic decision tree algorithm template. Extend it to implement algorithms such as C4.5, CART, or CSTree
0 stars 0 forks source link

A lot of code would be cleaner if there was a standard split class. #8

Closed mikesiers closed 7 years ago

mikesiers commented 7 years ago

Prerequisite Issues

Overview of this Issue

Some functions either return or require a test as input. Currently a test is represented as a dictionary such as {'attribute_one' : 30}. Places where tests are used are done so in a non-standard way. This can make code feel clumsy and unclean. Therefore, there should be a test class.

Tasks to Close Issue

mikesiers commented 7 years ago

Class Description

mikesiers commented 7 years ago

All the tasks for this issue have been completed.