Skip to content

blend_models method parameter not taking effect in pycaret.time_series #1644

@moezali1

Description

@moezali1

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')

image

Regardless of the voting method, the results of all these commands are exactly the same. See below:

image

image

image

Metadata

Metadata

Assignees

Labels

bugSomething isn't workingtime_seriesTopics related to the time series

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions