Skip to content

Commit

Permalink
Fix image runs failing due to incorrect gpu name being inserted. (#2700)
Browse files Browse the repository at this point in the history
* fix od cleanup schedule

* try new schedule for od
sharma-riti authored Oct 3, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent a12cb8b commit 94081b1
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ jobs:
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" generate_workspace_config "../../.azureml/config.json";
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" replace_template_values "automl-image-classification-multiclass-task-fridge-items.ipynb";
[ -f "../../.azureml/config" ] && cat "../../.azureml/config";
papermill -k python -p compute_name automl-gpu-cluster automl-image-classification-multiclass-task-fridge-items.ipynb automl-image-classification-multiclass-task-fridge-items.output.ipynb
papermill -k python automl-image-classification-multiclass-task-fridge-items.ipynb automl-image-classification-multiclass-task-fridge-items.output.ipynb
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multiclass-task-fridge-items
- name: upload notebook's working folder as an artifact
if: ${{ always() }}
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ jobs:
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" generate_workspace_config "../../.azureml/config.json";
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" replace_template_values "automl-image-classification-multilabel-task-fridge-items.ipynb";
[ -f "../../.azureml/config" ] && cat "../../.azureml/config";
papermill -k python -p compute_name automl-gpu-cluster automl-image-classification-multilabel-task-fridge-items.ipynb automl-image-classification-multilabel-task-fridge-items.output.ipynb
papermill -k python automl-image-classification-multilabel-task-fridge-items.ipynb automl-image-classification-multilabel-task-fridge-items.output.ipynb
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multilabel-task-fridge-items
- name: upload notebook's working folder as an artifact
if: ${{ always() }}
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ jobs:
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" generate_workspace_config "../../.azureml/config.json";
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" replace_template_values "automl-image-instance-segmentation-task-fridge-items.ipynb";
[ -f "../../.azureml/config" ] && cat "../../.azureml/config";
papermill -k python -p compute_name automl-gpu-cluster automl-image-instance-segmentation-task-fridge-items.ipynb automl-image-instance-segmentation-task-fridge-items.output.ipynb
papermill -k python automl-image-instance-segmentation-task-fridge-items.ipynb automl-image-instance-segmentation-task-fridge-items.output.ipynb
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-image-instance-segmentation-task-fridge-items
- name: upload notebook's working folder as an artifact
if: ${{ always() }}
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ name: sdk-jobs-automl-standalone-jobs-automl-image-object-detection-task-fridge-
on:
workflow_dispatch:
schedule:
- cron: "51 3/12 * * *"
- cron: "51 10/12 * * *"
pull_request:
branches:
- main
@@ -67,7 +67,7 @@ jobs:
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" generate_workspace_config "../../.azureml/config.json";
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" replace_template_values "automl-image-object-detection-task-fridge-items.ipynb";
[ -f "../../.azureml/config" ] && cat "../../.azureml/config";
papermill -k python -p compute_name automl-gpu-cluster automl-image-object-detection-task-fridge-items.ipynb automl-image-object-detection-task-fridge-items.output.ipynb
papermill -k python automl-image-object-detection-task-fridge-items.ipynb automl-image-object-detection-task-fridge-items.output.ipynb
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items
- name: upload notebook's working folder as an artifact
if: ${{ always() }}
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ jobs:
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" generate_workspace_config "../../.azureml/config.json";
bash "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh" replace_template_values "image-object-detection-batch-scoring-non-mlflow-model.ipynb";
[ -f "../../.azureml/config" ] && cat "../../.azureml/config";
papermill -k python -p compute_name automl-gpu-cluster image-object-detection-batch-scoring-non-mlflow-model.ipynb image-object-detection-batch-scoring-non-mlflow-model.output.ipynb
papermill -k python image-object-detection-batch-scoring-non-mlflow-model.ipynb image-object-detection-batch-scoring-non-mlflow-model.output.ipynb
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items-batch-scoring
- name: upload notebook's working folder as an artifact
if: ${{ always() }}

0 comments on commit 94081b1

Please sign in to comment.