# Serina's Decision Tree

Implementation of a decision tree algorithm with only base Python and numpy. See [blogpost](https://medium.com/@serinagrill/what-is-a-decision-tree-classifier-f4bdf4be8d8b) for more info!

## Getting Started

```pip install SerinasDecisionTree
sdt = SerinasDecisionTree()
sdt.fit(X_train)
sdt.predict(X_val)
```


### More about decision trees

- [Decision Tree Learning](https://en.wikipedia.org/wiki/Decision_tree_learning)
