Skip to content

Commit

Permalink
[BUG] fix wrong setting of failed_at_step in FallbackForecaster (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
yarnabrina committed Jan 25, 2024
1 parent d12bf0b commit f647a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sktime/forecasting/compose/_fallback.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def _predict(self, fh, X=None):
return self.current_forecaster_.predict(fh, X)
except Exception as e:
self.exceptions_raised_[self.first_nonfailing_forecaster_index_] = {
"failed_at_step": "fit",
"failed_at_step": "predict",
"exception": e,
"forecaster_name": self.current_name_,
}
Expand Down

0 comments on commit f647a5a

Please sign in to comment.