We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee5a2b commit 5de5f6bCopy full SHA for 5de5f6b
ads/opctl/operator/lowcode/forecast/model/automlx.py
@@ -80,7 +80,7 @@ def preprocess(self, data): # TODO: re-use self.le for explanations
80
def _build_model(self) -> pd.DataFrame:
81
import logging
82
83
- from automlx import Pipeline, init
+ from automlx import Pipeline, init, shutdown
84
85
full_data_dict = self.datasets.get_data_by_series()
86
@@ -193,6 +193,7 @@ def _build_model(self) -> pd.DataFrame:
193
194
logger.debug("===========Forecast Generated===========")
195
196
+ shutdown()
197
return self.forecast_output.get_forecast_long()
198
199
def _generate_report(self):
0 commit comments