trexwithoutt / DecisionTree-Implementation

Short implementation of decision tree in python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Decision Tree

dt.py is the python implementation of decision tree dt.ipynb is the decision tree demo in ipython notebook

Introduction

The Algorithm used to construct decision tree has complexity of O(n^2) since the dataset is small and numpy implementation optimized in O(n^2) algorithm.

Files

.
├── dt.ipynb
├── download.png
├── dt.py
└── README.md

About

Short implementation of decision tree in python

License:MIT License


Languages

Language:Jupyter Notebook 82.2%Language:Python 17.8%