You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,13 +264,14 @@ By default you can start from blending. It is easier to apply and more chances t
264
264
[Bagging](https://en.wikipedia.org/wiki/Bootstrap_aggregating) or Bootstrap aggregating works as follows: generate subsets of training set, train estimator on these subsets and then find average of predictions. When we train several different algorithms on the same data and then find average we can call this bagging as well. See [simple blending](https://github.com/vecxoz/vecstack#12-what-is-blending-how-is-it-related-to-stacking).
265
265
266
266
### 16. How many models should I use on a given stacking level?
267
-
268
-
***Note:*** Always remember that higher number of levels or models does NOT guarantee better result. The key to success in stacking (blending) is diversity - low correlation between models.
267
+
268
+
***Note 1:*** The best architecture can be found only by experiment.
269
+
***Note 2:*** Always remember that higher number of levels or models does NOT guarantee better result. The key to success in stacking (blending) is diversity - low correlation between models.
269
270
270
271
It depends on many factors like type of problem, type of data, quality of models, correlation of models, expected result, etc.
* If you're crunching numbers at Kaggle and decided to go wild:
@@ -280,7 +281,8 @@ You can also find some winning stacking architectures on [Kaggle blog](http://bl
280
281
281
282
### 17. How many stacking levels should I use?
282
283
283
-
***Note:*** Always remember that higher number of levels or models does NOT guarantee better result. The key to success in stacking (blending) is diversity - low correlation between models.
284
+
***Note 1:*** The best architecture can be found only by experiment.
285
+
***Note 2:*** Always remember that higher number of levels or models does NOT guarantee better result. The key to success in stacking (blending) is diversity - low correlation between models.
284
286
285
287
For some example configurations see [Q16](https://github.com/vecxoz/vecstack#16-how-many-models-should-i-use-on-a-given-stacking-level)
0 commit comments