Skip to content

Commit d0add94

Browse files
Update README.md
1 parent 95a20b7 commit d0add94

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -170,3 +170,18 @@ Out Of Bag (OOB) instances
170170
- Since OOB instances are not seen by the model during training.
171171
- This can be used to estimate the performance of the model without the need of cross validation.
172172
- This technique is known as OOB evaluation
173+
174+
Random Forest
175+
- Another ensemble model
176+
- Base estimator: Decision Tree
177+
- Each estimator is trained on a different bootstrap sample having the same size as the training set
178+
- RF introduces further randomization in the training of individual trees
179+
- d features are sampled at each node without replacement ( d < total number of features)
180+
181+
Random Forests Classication:
182+
- Aggregates predictions by majority voting
183+
- RandomForestClassifier in scikit-learn
184+
185+
Random Forests Regression:
186+
- Aggregates predictions through averaging
187+
- RandomForestRegressor in scikit-learn

0 commit comments

Comments
 (0)