Skip to content

Commit

Permalink
Add target col back to required cols in DeepAR predict() (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabhya-db authored Oct 1, 2024
1 parent 4f16567 commit f7dbeb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/databricks/automl_runtime/forecast/deepar/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def predict(self,
:return: predicted pd.DataFrame that starts after the last timestamp in the input dataframe,
and predicts the horizon using the mean of the samples
"""
required_cols = [self._time_col]
required_cols = [self._target_col, self._time_col]
if self._id_cols:
required_cols += self._id_cols
self._validate_cols(model_input, required_cols)
Expand Down
2 changes: 1 addition & 1 deletion runtime/databricks/automl_runtime/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# limitations under the License.
#

__version__ = "0.2.20.2" # pragma: no cover
__version__ = "0.2.20.3.dev" # pragma: no cover

0 comments on commit f7dbeb3

Please sign in to comment.