diff --git a/assets/large_language_models/dbcopilot/components/src/db_copilot_mir/code/score_zero.py b/assets/large_language_models/dbcopilot/components/src/db_copilot_mir/code/score_zero.py index 60f0d3f32a..d1f64d76f4 100644 --- a/assets/large_language_models/dbcopilot/components/src/db_copilot_mir/code/score_zero.py +++ b/assets/large_language_models/dbcopilot/components/src/db_copilot_mir/code/score_zero.py @@ -10,7 +10,6 @@ from enum import Enum from typing import Dict, List, Optional, Union -from azure.identity import DefaultAzureCredential, get_bearer_token_provider from azureml.contrib.services.aml_request import AMLRequest, rawhttp from azureml.contrib.services.aml_response import AMLResponse from db_copilot.contract.memory_core import MemoryItem @@ -69,22 +68,12 @@ def init(): ) else: logging.info("using managed identity access Azure OpenAI") - try: - token_provider = get_bearer_token_provider( - DefaultAzureCredential(), "https://cognitiveservices.azure.com/.default" - ) - logging.info("Successfully obtained token") - except Exception as e: - logging.error(f"Failed to obtain token: {e}") - raise Exception(f"Failed to obtain token: {e}") embedding_aoai_connection = AzureOpenAIConnection( - token_provider=token_provider, api_base=secret_manager.get("embedding-aoai-api-base"), api_type="azure", api_version="2023-03-15-preview", ) chat_aoai_connection = AzureOpenAIConnection( - token_provider=token_provider, api_base=secret_manager.get("chat-aoai-api-base"), api_type="azure", api_version="2023-03-15-preview", @@ -303,7 +292,7 @@ def _get_db_provider(request_body: RequestBody, session_id: str): return db_copilot else: return AMLResponse( - "No db_copilot is available. Please specify Session id or datasotre_uri or db_name is required", + "No db_copilot is available. Please specify Session id or datastore_uri or db_name is required", 400, ) diff --git a/assets/large_language_models/dbcopilot/environments/dbcopilot_mir/context/Dockerfile b/assets/large_language_models/dbcopilot/environments/dbcopilot_mir/context/Dockerfile index 1cec0207ff..88d9fd92de 100644 --- a/assets/large_language_models/dbcopilot/environments/dbcopilot_mir/context/Dockerfile +++ b/assets/large_language_models/dbcopilot/environments/dbcopilot_mir/context/Dockerfile @@ -13,8 +13,8 @@ RUN apt-get update \ python3.10 \ libpython3.10-minimal \ libpython3.10-stdlib \ - curl=7.81.0-1ubuntu1.17 \ - libcurl4=7.81.0-1ubuntu1.17 \ + curl \ + libcurl4 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* diff --git a/assets/training/finetune_acft_image/environments/acft_image_huggingface/context/requirements.txt b/assets/training/finetune_acft_image/environments/acft_image_huggingface/context/requirements.txt index 1c9dee9e9f..82c3460919 100644 --- a/assets/training/finetune_acft_image/environments/acft_image_huggingface/context/requirements.txt +++ b/assets/training/finetune_acft_image/environments/acft_image_huggingface/context/requirements.txt @@ -3,7 +3,7 @@ azureml-acft-accelerator=={{latest-pypi-version}} azureml-acft-common-components[image]~={{latest-pypi-version}} azureml-acft-image-components=={{latest-pypi-version}} azureml-core=={{latest-pypi-version}} -azure-ai-ml==1.16.1 +azure-ai-ml==1.19.0 requests datasets==2.19.0 transformers==4.39.3 diff --git a/assets/training/finetune_acft_image/environments/acft_image_mmdetection/context/requirements.txt b/assets/training/finetune_acft_image/environments/acft_image_mmdetection/context/requirements.txt index 46969bc5b4..c717dcabb7 100644 --- a/assets/training/finetune_acft_image/environments/acft_image_mmdetection/context/requirements.txt +++ b/assets/training/finetune_acft_image/environments/acft_image_mmdetection/context/requirements.txt @@ -3,7 +3,7 @@ azureml-acft-accelerator=={{latest-pypi-version}} azureml-acft-common-components[image]~={{latest-pypi-version}} azureml-acft-image-components=={{latest-pypi-version}} azureml-core=={{latest-pypi-version}} -azure-ai-ml==1.16.1 +azure-ai-ml==1.19.0 requests datasets==2.15.0 transformers==4.38.2 diff --git a/assets/training/finetune_acft_image/environments/acft_video_mmtracking/context/requirements.txt b/assets/training/finetune_acft_image/environments/acft_video_mmtracking/context/requirements.txt index 0f57bd19dd..bfcae5ec74 100644 --- a/assets/training/finetune_acft_image/environments/acft_video_mmtracking/context/requirements.txt +++ b/assets/training/finetune_acft_image/environments/acft_video_mmtracking/context/requirements.txt @@ -3,7 +3,7 @@ azureml-acft-accelerator=={{latest-pypi-version}} azureml-acft-common-components[image]~={{latest-pypi-version}} azureml-acft-image-components=={{latest-pypi-version}} azureml-core=={{latest-pypi-version}} -azure-ai-ml==1.18.0 +azure-ai-ml==1.19.0 requests>=2.31.0 datasets==2.15.0 transformers==4.36.2 diff --git a/assets/training/finetune_acft_image/environments/acpt_image_framework_selector/context/requirements.txt b/assets/training/finetune_acft_image/environments/acpt_image_framework_selector/context/requirements.txt index 10f5a4b91b..7fc0489c23 100644 --- a/assets/training/finetune_acft_image/environments/acpt_image_framework_selector/context/requirements.txt +++ b/assets/training/finetune_acft_image/environments/acpt_image_framework_selector/context/requirements.txt @@ -1,5 +1,5 @@ azureml-acft-common-components~={{latest-pypi-version}} -azure-ai-ml==1.16.1 +azure-ai-ml==1.19.0 mldesigner mlflow azureml-mlflow diff --git a/assets/training/finetune_acft_multimodal/environments/acpt_multimodal/context/Dockerfile b/assets/training/finetune_acft_multimodal/environments/acpt_multimodal/context/Dockerfile index 8f1d21dbb7..f042c1a0df 100644 --- a/assets/training/finetune_acft_multimodal/environments/acpt_multimodal/context/Dockerfile +++ b/assets/training/finetune_acft_multimodal/environments/acpt_multimodal/context/Dockerfile @@ -14,7 +14,7 @@ RUN pip install azureml-metrics==0.0.33 # Vulnerability fix RUN pip install datasets==2.15.0 RUN pip install pyarrow==14.0.1 -RUN pip install cryptography==42.0.5 +RUN pip install cryptography>=43.0.1 RUN pip install gunicorn==22.0.0 RUN pip install onnxruntime==1.17.3 RUN pip install onnx==1.16.0 diff --git a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference/spec.yaml b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference/spec.yaml index ddd6c0ab45..cb65be86b7 100644 --- a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference/spec.yaml @@ -4,7 +4,7 @@ type: pipeline name: automl_hts_inference display_name: AutoML Hierarchical Timeseries Forecasting - Inference description: Enables inference for hts components. -version: 0.0.5 +version: 0.0.6 is_deterministic: false inputs: @@ -74,7 +74,7 @@ outputs: jobs: automl_hts_inference_setup: type: command - component: azureml:automl_hts_inference_setup_step:0.0.5 + component: azureml:automl_hts_inference_setup_step:0.0.6 inputs: raw_Data: ${{parent.inputs.raw_data}} enable_event_logger: True @@ -97,7 +97,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_hts_model_inference: type: parallel - component: azureml:automl_hts_prs_inference_step:0.0.5 + component: azureml:automl_hts_prs_inference_step:0.0.6 inputs: partitioned_data: ${{parent.jobs.automl_hts_inference_setup.outputs.processed_data}} metadata: ${{parent.jobs.automl_hts_inference_setup.outputs.metadata}} @@ -121,7 +121,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_hts_inference_collect_step: type: command - component: azureml:automl_hts_inference_collect_step:0.0.5 + component: azureml:automl_hts_inference_collect_step:0.0.6 inputs: setup_metadata: ${{parent.jobs.automl_hts_inference_setup.outputs.metadata}} input_metadata: ${{parent.jobs.automl_hts_model_inference.outputs.output_metadata}} diff --git a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_collect/spec.yaml b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_collect/spec.yaml index 0fa45858c4..c9ec02c38f 100644 --- a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_collect/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_collect/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_hts_inference_collect_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML HTS - Inference Collect type: command diff --git a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_setup/spec.yaml b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_setup/spec.yaml index c16444e7a5..4844145201 100644 --- a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_setup/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_inference_setup/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_hts_inference_setup_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML HTS - Inference Setup type: command diff --git a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_prs_inference/spec.yaml b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_prs_inference/spec.yaml index 82373b9532..1ef4754636 100644 --- a/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_prs_inference/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-inference/components/automl_hts_prs_inference/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json type: parallel -version: 0.0.5 +version: 0.0.6 name: automl_hts_prs_inference_step display_name: AutoML HTS - Inference Step diff --git a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_data_agg/spec.yaml b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_data_agg/spec.yaml index 0e4629fdbd..814770f19e 100644 --- a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_data_agg/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_data_agg/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/parallelComponent.schema.json type: parallel -version: 0.0.5 +version: 0.0.6 name: automl_hts_data_aggregation_step display_name: AutoML HTS - Training Data Aggregation diff --git a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_prs_train/spec.yaml b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_prs_train/spec.yaml index 80acb5b224..8b1758eca5 100644 --- a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_prs_train/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_prs_train/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/parallelComponent.schema.json type: parallel -version: 0.0.5 +version: 0.0.6 name: automl_hts_automl_training_step display_name: AutoML HTS - AutoML Training diff --git a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train/spec.yaml b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train/spec.yaml index b8049c3ccd..d4d23cde52 100644 --- a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train/spec.yaml @@ -4,7 +4,7 @@ type: pipeline name: automl_hts_training display_name: AutoML Hierarchical Timeseries Forecasting - Training description: Enables AutoML Training for hts components. -version: 0.0.5 +version: 0.0.6 is_deterministic: false inputs: @@ -40,7 +40,7 @@ outputs: jobs: automl_hts_train_setup_step: type: command - component: azureml:automl_hts_training_setup_step:0.0.5 + component: azureml:automl_hts_training_setup_step:0.0.6 inputs: raw_Data: ${{parent.inputs.raw_data}} automl_config: ${{parent.inputs.automl_config}} @@ -56,7 +56,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_hts_data_aggregation_step: type: parallel - component: azureml:automl_hts_data_aggregation_step:0.0.5 + component: azureml:automl_hts_data_aggregation_step:0.0.6 inputs: partitioned_data: ${{parent.jobs.automl_hts_train_setup_step.outputs.processed_data}} metadata: ${{parent.jobs.automl_hts_train_setup_step.outputs.metadata}} @@ -80,7 +80,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_hts_automl_training_step: type: parallel - component: azureml:automl_hts_automl_training_step:0.0.5 + component: azureml:automl_hts_automl_training_step:0.0.6 inputs: aggregated_data: ${{parent.jobs.automl_hts_data_aggregation_step.outputs.aggregated_data}} data_agg_metadata: ${{parent.jobs.automl_hts_data_aggregation_step.outputs.output_metadata}} @@ -104,7 +104,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_hts_train_collect_step: type: command - component: azureml:automl_hts_training_collect_step:0.0.5 + component: azureml:automl_hts_training_collect_step:0.0.6 inputs: setup_metadata: ${{parent.jobs.automl_hts_train_setup_step.outputs.metadata}} input_metadata: ${{parent.jobs.automl_hts_automl_training_step.outputs.output_metadata}} diff --git a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_collect/spec.yaml b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_collect/spec.yaml index bb7188bbd0..9707932348 100644 --- a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_collect/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_collect/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_hts_training_collect_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML HTS - Collection Training Results type: command diff --git a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_setup/spec.yaml b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_setup/spec.yaml index 139ea3a0ea..7ebdb5a362 100644 --- a/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_setup/spec.yaml +++ b/assets/training/forecasting_demand/automl-hts-train/components/automl_hts_train_setup/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_hts_training_setup_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML HTS - Training Setup type: command diff --git a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_prs_train/spec.yaml b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_prs_train/spec.yaml index ec133d5576..2fb6227d76 100644 --- a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_prs_train/spec.yaml +++ b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_prs_train/spec.yaml @@ -2,7 +2,7 @@ $schema: https://azuremlschemas.azureedge.net/latest/parallelComponent.schema.js name: automl_many_models_training_step display_name: AutoML Many Models - AutoML Training -version: 0.0.5 +version: 0.0.6 is_deterministic: false type: parallel diff --git a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training/spec.yaml b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training/spec.yaml index e71648b769..4570c2f189 100644 --- a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training/spec.yaml +++ b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training/spec.yaml @@ -4,7 +4,7 @@ type: pipeline name: automl_many_models_training display_name: AutoML - Many Models Training description: Enables AutoML many models training. -version: 0.0.5 +version: 0.0.6 is_deterministic: false inputs: @@ -44,7 +44,7 @@ outputs: jobs: automl_many_models_training_setup_step: type: command - component: azureml:automl_many_models_training_setup_step:0.0.5 + component: azureml:automl_many_models_training_setup_step:0.0.6 inputs: raw_Data: ${{parent.inputs.raw_data}} automl_config: ${{parent.inputs.automl_config}} @@ -61,7 +61,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_many_models_training_step: type: parallel - component: azureml:automl_many_models_training_step:0.0.5 + component: azureml:automl_many_models_training_step:0.0.6 inputs: partitioned_data: ${{parent.jobs.automl_many_models_training_setup_step.outputs.processed_data}} metadata: ${{parent.jobs.automl_many_models_training_setup_step.outputs.metadata}} @@ -84,7 +84,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_many_models_training_collect_step: type: command - component: azureml:automl_many_models_training_collection_step:0.0.5 + component: azureml:automl_many_models_training_collection_step:0.0.6 inputs: setup_metadata: ${{parent.jobs.automl_many_models_training_setup_step.outputs.metadata}} input_metadata: ${{parent.jobs.automl_many_models_training_step.outputs.output_metadata}} diff --git a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_collect/spec.yaml b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_collect/spec.yaml index 1be286de98..3f289d93ee 100644 --- a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_collect/spec.yaml +++ b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_collect/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_many_models_training_collection_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML Many Models - Collection Training Results is_deterministic: false type: command diff --git a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_setup/spec.yaml b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_setup/spec.yaml index 1981e04d92..bc809ecddb 100644 --- a/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_setup/spec.yaml +++ b/assets/training/forecasting_demand/automl-many-models-train/components/automl_many_model_training_setup/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_many_models_training_setup_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML Many Models - Training Setup Step is_deterministic: false type: command diff --git a/assets/training/forecasting_demand/automl-many-models-train/components/spark_partition/spec.yaml b/assets/training/forecasting_demand/automl-many-models-train/components/spark_partition/spec.yaml index d71379a3e7..fda458ea64 100644 --- a/assets/training/forecasting_demand/automl-many-models-train/components/spark_partition/spec.yaml +++ b/assets/training/forecasting_demand/automl-many-models-train/components/spark_partition/spec.yaml @@ -3,7 +3,7 @@ name: automl_tabular_data_partitioning type: spark display_name: AutoML - Tabular Data Partitioning description: Enables dataset partitioning for AutoML many models and hierarchical timeseries solution accelerators using spark. -version: 0.0.5 +version: 0.0.6 is_deterministic: false code: ../../src/spark_partition/ diff --git a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_model_inferencing/spec.yaml b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_model_inferencing/spec.yaml index 6c751a2336..a8697e377d 100644 --- a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_model_inferencing/spec.yaml +++ b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_model_inferencing/spec.yaml @@ -4,7 +4,7 @@ type: pipeline name: automl_many_models_inference display_name: AutoML Many Models - Inference description: Inference components for AutoML many model. -version: 0.0.5 +version: 0.0.6 is_deterministic: false inputs: @@ -93,7 +93,7 @@ outputs: jobs: automl_many_models_inference_setup_step: type: command - component: azureml:automl_many_models_inference_setup_step:0.0.5 + component: azureml:automl_many_models_inference_setup_step:0.0.6 inputs: raw_Data: ${{parent.inputs.raw_data}} enable_event_logger: True @@ -120,7 +120,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_many_models_inferencing_step: type: parallel - component: azureml:automl_many_models_inference_step:0.0.5 + component: azureml:automl_many_models_inference_step:0.0.6 inputs: partitioned_data: ${{parent.jobs.automl_many_models_inference_setup_step.outputs.processed_data}} metadata: ${{parent.jobs.automl_many_models_inference_setup_step.outputs.metadata}} @@ -145,7 +145,7 @@ jobs: compute: ${{parent.inputs.compute_name}} automl_many_models_inference_collect_step: type: command - component: azureml:automl_many_models_inference_collect_step:0.0.5 + component: azureml:automl_many_models_inference_collect_step:0.0.6 inputs: setup_metadata: ${{parent.jobs.automl_many_models_inference_setup_step.outputs.metadata}} input_metadata: ${{parent.jobs.automl_many_models_inferencing_step.outputs.output_metadata}} diff --git a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_collect_inf/spec.yaml b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_collect_inf/spec.yaml index 539e5c2c34..1c93af0b04 100644 --- a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_collect_inf/spec.yaml +++ b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_collect_inf/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_many_models_inference_collect_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML Many Models - Collection Inference Results is_deterministic: false type: command diff --git a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_prs_inferencing/spec.yaml b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_prs_inferencing/spec.yaml index 07a0145849..b5aa7a3a5c 100644 --- a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_prs_inferencing/spec.yaml +++ b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_prs_inferencing/spec.yaml @@ -2,7 +2,7 @@ $schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json name: automl_many_models_inference_step display_name: AutoML Many Models - Inference Step -version: 0.0.5 +version: 0.0.6 is_deterministic: false type: parallel diff --git a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_setup_inf/spec.yaml b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_setup_inf/spec.yaml index 8629369a31..ee1d00ffae 100644 --- a/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_setup_inf/spec.yaml +++ b/assets/training/forecasting_demand/automl-many_models-inference/components/automl_many_models_setup_inf/spec.yaml @@ -1,6 +1,6 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json name: automl_many_models_inference_setup_step -version: 0.0.5 +version: 0.0.6 display_name: AutoML Many Models - Inference Setup Step is_deterministic: false type: command diff --git a/assets/training/forecasting_demand/automl-single-model-inference/components/inference/spec.yaml b/assets/training/forecasting_demand/automl-single-model-inference/components/inference/spec.yaml index c834cffa5b..e3058b586f 100644 --- a/assets/training/forecasting_demand/automl-single-model-inference/components/inference/spec.yaml +++ b/assets/training/forecasting_demand/automl-single-model-inference/components/inference/spec.yaml @@ -2,7 +2,7 @@ $schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.jso name: automl_forecasting_inference display_name: AutoML Forecasting Inference description: Inference component for AutoML Forecasting. -version: 0.0.8 +version: 0.0.9 type: command inputs: