We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
predict
We should add predict method into ensembles.
EnsembleMixin._predict_pipeline
VotingEnsemble._predict
VotingEnsemble._forecast
StackingEnsemble._predict
forecast
DirectEnsemble._predict
horizon
VotingEnsemble
test_predict_interface
test_forecast_interface
test_predict_prediction_interval_interface
test_forecast_prediction_interval_interface
test_forecast_values_default_weights
test_forecast_values_custom_weights
_vote
StackingEnsemble
test_predict_values
test_forecast
test_forecast_raise_error_if_not_fitted
pytest.mark.parametrize
DirectEnsemble
Is blocked by #958.
The text was updated successfully, but these errors were encountered:
Closed by #972.
Sorry, something went wrong.
Mr-Geekman
No branches or pull requests
🚀 Feature Request
We should add
predict
method into ensembles.Proposal
EnsembleMixin._predict_pipeline
.VotingEnsemble._predict
: look atVotingEnsemble._forecast
for inspiration.StackingEnsemble._predict
forecast
into another method.predict
similar toforecast
with preparing predictions and calling method for construct the answer.DirectEnsemble._predict
: it should make prediction with a model with the smallesthorizon
.Test cases
VotingEnsemble
:test_predict_interface
, look attest_forecast_interface
for reference.test_predict_prediction_interval_interface
, look attest_forecast_prediction_interval_interface
for reference.test_forecast_values_default_weights
andtest_forecast_values_custom_weights
to test_vote
instead of `forecast.forecast
calling_vote
.predict
calling_vote
.StackingEnsemble
test_predict_interface
, look attest_forecast_interface
for reference.test_predict_prediction_interval_interface
, look attest_forecast_prediction_interval_interface
for reference.test_predict_values
, look attest_forecast
for reference.test_forecast_raise_error_if_not_fitted
into test that tests bothforecast
andpredict
usingpytest.mark.parametrize
.DirectEnsemble
: test thatpredict
uses model with the smallesthorizon
.Additional context
Is blocked by #958.
The text was updated successfully, but these errors were encountered: