business-science / modeltime.resample

Resampling Tools for Time Series Forecasting with Modeltime
https://business-science.github.io/modeltime.resample/
Other
19 stars 5 forks source link

Ability to combine resample tables #8

Open mdancho84 opened 2 years ago

mdancho84 commented 2 years ago

Shafi Qureshi:

Hello, Matt Dancho I am using 15 different models, LightGBM, CATboost, XGBoost, and others. The problem is when running the models with resamples_fitted <- submodels_1_tbl %>% modeltime_fit_resamples( resamples = resample_spec , control = control_resamples(verbose = TRUE,allow_par = TRUE )) The R studio crushes. So I am running the LightGBM, CATboost, XGBoost models in differentresamples_fitted therefore, I have now resamples_fitted_1 ,resamples_fitted_2 and resamples_fitted_3. . I want to combine all threeso could be used for the stacked ensemble. Is there a way to combine all different resample fits (resamples_fitted ) models together like combine_modeltime_tables ?