Skip to content

[BUG] Time Series Blend Models do not work when making predictions #1591

@ngupta23

Description

@ngupta23

Describe the bug
Plotting does not work for "some" ensembled models.

To Reproduce

mean_blender = exp.blend_models(best_tuned_models, method='mean')
exp.plot_model(estimator=mean_blender)  # Does not work

median_blender = exp.blend_models(best_tuned_models, method='median')
exp.plot_model(estimator=median_blender)  # Works

voting_blender = exp.blend_models(best_tuned_models, method='voting', weights=top_model_weights.values)
exp.plot_model(estimator=voting_blender)  # Does not work

image

Expected behavior
Would have expected mean and voting blender to work as median does

image

Versions
version on time_series branch

Metadata

Metadata

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