Skip to content

Commit

Permalink
pin compute metrics component to 0.0.10. The later versions of this c…
Browse files Browse the repository at this point in the history
…omponent break the pipelines due to the latest changes by the component owners (#2549)
  • Loading branch information
vlbejan authored Aug 10, 2023
1 parent ce72472 commit f306e7b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

compute_metrics:
type: command
component: azureml://registries/azureml/components/compute_metrics
component: azureml://registries/azureml/components/compute_metrics/versions/0.0.10
inputs:
task: "tabular-forecasting"
ground_truth: ${{parent.jobs.automl_hts_inference.outputs.evaluation_data}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

compute_metrics:
type: command
component: azureml://registries/azureml/components/compute_metrics
component: azureml://registries/azureml/components/compute_metrics/versions/0.0.10
inputs:
task: "tabular-forecasting"
ground_truth: ${{parent.jobs.automl_mm_inference.outputs.evaluation_data}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,8 @@
"outputs": [],
"source": [
"compute_metrics_component = ml_client_registry.components.get(\n",
" name=\"compute_metrics\", label=\"latest\"\n",
" name=\"compute_metrics\",\n",
" version=\"0.0.10\", # label=\"latest\"\n",
")\n",
"print(f\"Compute metrics component version: {compute_metrics_component.version}\\n---\")"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,8 @@
"outputs": [],
"source": [
"compute_metrics_component = ml_client_registry.components.get(\n",
" name=\"compute_metrics\", label=\"latest\"\n",
" name=\"compute_metrics\",\n",
" version=\"0.0.10\", # label=\"latest\"\n",
")\n",
"print(f\"Compute metrics component version: {compute_metrics_component.version}\\n---\")"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,8 @@
"outputs": [],
"source": [
"compute_metrics_component = ml_client_registry.components.get(\n",
" name=\"compute_metrics\", label=\"latest\"\n",
" name=\"compute_metrics\",\n",
" version=\"0.0.10\", # label=\"latest\"\n",
")\n",
"print(\n",
" f\"Many models inference component version: {compute_metrics_component.version}\\n---\"\n",
Expand Down

0 comments on commit f306e7b

Please sign in to comment.