-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
bugSomething isn't workingSomething isn't workingtime_seriesTopics related to the time seriesTopics related to the time series
Milestone
Description
blend_models method parameter not taking effect in pycaret.time_series
from pycaret.datasets import get_data
data = get_data('airline')
from pycaret.time_series import *
s = setup(data, fold = 5, fh = 12, session_id = 123)
best_models = compare_models(n_select = 3)
# blending with different methods
blender_mean = blend_models(best_models, method = 'mean')
blender_median = blend_models(best_models, method = 'median')
blender_voting = blend_models(best_models, method = 'voting')
Regardless of the voting method, the results of all these commands are exactly the same. See below:
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingtime_seriesTopics related to the time seriesTopics related to the time series