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 1bba8e7 commit 66eb667Copy full SHA for 66eb667
ads/aqua/modeldeployment/deployment.py
@@ -221,7 +221,7 @@ def create(
221
task_tag = aqua_model.freeform_tags.get(Tags.TASK, UNKNOWN)
222
if (
223
task_tag == ModelTask.TIME_SERIES_FORECASTING
224
- or task_tag.replace("-", "_") == ModelTask.TIME_SERIES_FORECASTING
+ or task_tag == ModelTask.TIME_SERIES_FORECASTING.replace("-", "_")
225
):
226
create_deployment_details.env_var.update(
227
{Tags.TASK.upper(): ModelTask.TIME_SERIES_FORECASTING}
0 commit comments