Guest User

Untitled

a guest
Oct 17th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Start with a single leaf tree.
  2. For each leaf:
  3. For each feature:
  4. Calculate the MCE induced by each split point.
  5. Choose the split with the lowest MCE.
  6. Recurse. Stop when the number of samples assigned to a leaf is below a threshold or the tree depth reaches a threshold.
  7.  
  8.  
  9. Example:
  10. x1 < t1
  11. |
  12. +-------------+------------+
  13. | |
  14. R1 x2 < t3
  15. |
  16. +-------+--------+
  17. | |
  18. R2 R3
Add Comment
Please, Sign In to add comment