carpentries-incubator / machine-learning-trees-python

Introduction to tree models with Python
https://carpentries-incubator.github.io/machine-learning-trees-python
Other
3 stars 6 forks source link

Add note that random forest restricts variables on a node level #19

Open tompollard opened 2 years ago

tompollard commented 2 years ago

Make it clear that the random forest is restricting the variables available at each decision in the node (rather than restricting which variables are available for training of the entire tree): https://carpentries-incubator.github.io/machine-learning-trees-python/06-random-forest/

tompollard commented 2 years ago

Perhaps also add an exercise that asks what we expect to see if the max_depth is set to 1 (we expect each tree to split on only one of the two variables).