Skip to content

Implements Decision tree classification and regression algorithm from scratch in Python.

Notifications You must be signed in to change notification settings

vamc-stash/Decision-Tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Decision-Tree

This repo implements Decision Tree Classification and Regression algorithms from scratch in Python.

Please read the blog that goes with code.

Installations

# Create and activate new virtual environment (optional)
python -m venv dt-venv
source dt-venv/bin/activate

# To deactivate virtual environment knn
deactivate

# Install requirements
pip install -r requirements.txt