Would it make sense to apply bagging of random forests? For example:
brf = BaggingRegressor(base_estimator=RandomForestModel,
n_estimators=10,
max_samples=1.0,
bootstrap=True, # Samples are drawn with replacement
n_jobs= n_jobs,
random_state=random_state).fit(X_train, Y_train)
Or to have, on a stacking model, a Random Forest as the base/final estimator?