Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# decision-tree
CART decision tree implementation.


# Solution
1. How to choose the feature for the first split - maximize purity (minimize impurity)
2. When to stop spliting - when a node is 100% one class (or when you exceeded maximum depth) or when improvement in impurity is below a threshold
3.