File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -170,3 +170,18 @@ Out Of Bag (OOB) instances
170
170
- Since OOB instances are not seen by the model during training.
171
171
- This can be used to estimate the performance of the model without the need of cross validation.
172
172
- 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
You can’t perform that action at this time.
0 commit comments