Reorganizing Samples into v1 and v2 (#1680)
* Moved all setup related folders into a parent setup folder * Moved python-sdk into v1 * python-sdk workflows changed to v1 folder * Moved notebooks folder into v1 * Update readme.py * Updated workflows for v1 notebooks folder * Moved scripts folder into v1 * moved all sdk code into sdk/python * Updating sdkv2 workflows * moving .net into sdk folder * Updating README files * Updating README * Updating README * Fixing sdk v2 workflows * Fixing custom workflows * Adding the missing json files * Update docs.yml * Manually fixing workflows for python-sdk since readme.py does not seem to generate them
This commit is contained in:
Родитель
66d7c92a9d
Коммит
5250b55bcc
|
@ -22,4 +22,4 @@ jobs:
|
|||
run: pip install -r dev-requirements.txt
|
||||
- name: run docs checker script
|
||||
run: python docs.py
|
||||
working-directory: setup-repo
|
||||
working-directory: setup/setup-repo
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- notebooks/basics/**
|
||||
- v1/notebooks/basics/**
|
||||
- .github/workflows/notebooks-basics.yml
|
||||
- notebooks/dev-requirements.txt
|
||||
- v1/notebooks/dev-requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,22 +21,22 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r notebooks/dev-requirements.txt
|
||||
run: pip install -r v1/notebooks/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples
|
||||
- name: run 1.train-lightgbm-local.ipynb
|
||||
run: papermill 1.train-lightgbm-local.ipynb - -k python
|
||||
working-directory: notebooks/basics
|
||||
working-directory: v1/notebooks/basics
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- notebooks/cloud-data/**
|
||||
- v1/notebooks/cloud-data/**
|
||||
- .github/workflows/notebooks-cloud-data.yml
|
||||
- notebooks/dev-requirements.txt
|
||||
- v1/notebooks/dev-requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -25,22 +25,22 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r notebooks/dev-requirements.txt
|
||||
run: pip install -r v1/notebooks/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples
|
||||
- name: run ${{matrix.notebook}}
|
||||
run: papermill ${{matrix.notebook}} - -k python
|
||||
working-directory: notebooks/cloud-data
|
||||
working-directory: v1/notebooks/cloud-data
|
||||
|
|
|
@ -21,8 +21,8 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r notebooks/dev-requirements.txt
|
||||
|
@ -32,8 +32,8 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- notebooks/using-mlflow/**
|
||||
- v1/notebooks/using-mlflow/**
|
||||
- .github/workflows/notebooks-using-mlflow.yml
|
||||
- notebooks/dev-requirements.txt
|
||||
- v1/notebooks/dev-requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,19 +21,19 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r notebooks/dev-requirements.txt
|
||||
run: pip install -r v1/notebooks/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/deploy/pytorch/mnist/**
|
||||
- v1/python-sdk/workflows/deploy/pytorch/mnist/**
|
||||
- .github/workflows/python-sdk-deploy-pytorch-mnist-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/deploy/pytorch/mnist/job.py
|
||||
run: python v1/python-sdk/workflows/deploy/pytorch/mnist/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/deploy/scikit-learn/diabetes/**
|
||||
- v1/python-sdk/workflows/deploy/scikit-learn/diabetes/**
|
||||
- .github/workflows/python-sdk-deploy-scikit-learn-diabetes-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/deploy/scikit-learn/diabetes/job.py
|
||||
run: python v1/python-sdk/workflows/deploy/scikit-learn/diabetes/job.py
|
||||
|
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/experimental/automl-model-testing/classification/**
|
||||
- v1/python-sdk/experimental/automl-model-testing/classification/**
|
||||
- .github/workflows/python-sdk-experimental-automl-model-testing-classification-tsi.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -26,14 +26,14 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/experimental/automl-model-testing/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/experimental/automl-model-testing/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -46,17 +46,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run classification-TSI.ipynb
|
||||
run: papermill -k python classification-TSI.ipynb classification-TSI.output.ipynb
|
||||
working-directory: python-sdk/experimental/automl-model-testing/classification
|
||||
working-directory: v1/python-sdk/experimental/automl-model-testing/classification
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: classification-TSI
|
||||
path: python-sdk/experimental/automl-model-testing/classification
|
||||
path: v1/python-sdk/experimental/automl-model-testing/classification
|
||||
|
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/experimental/automl-model-testing/forecasting/**
|
||||
- v1/python-sdk/experimental/automl-model-testing/forecasting/**
|
||||
- .github/workflows/python-sdk-experimental-automl-model-testing-forecasting-tsi.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -26,14 +26,14 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/experimental/automl-model-testing/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/experimental/automl-model-testing/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -46,17 +46,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run forecasting-TSI.ipynb
|
||||
run: papermill -k python forecasting-TSI.ipynb forecasting-TSI.output.ipynb
|
||||
working-directory: python-sdk/experimental/automl-model-testing/forecasting
|
||||
working-directory: v1/python-sdk/experimental/automl-model-testing/forecasting
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: forecasting-TSI
|
||||
path: python-sdk/experimental/automl-model-testing/forecasting
|
||||
path: v1/python-sdk/experimental/automl-model-testing/forecasting
|
||||
|
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/experimental/automl-model-testing/regression/**
|
||||
- v1/python-sdk/experimental/automl-model-testing/regression/**
|
||||
- .github/workflows/python-sdk-experimental-automl-model-testing-regression-tsi.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -26,14 +26,14 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/experimental/automl-model-testing/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/experimental/automl-model-testing/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -46,17 +46,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run regression-TSI.ipynb
|
||||
run: papermill -k python regression-TSI.ipynb regression-TSI.output.ipynb
|
||||
working-directory: python-sdk/experimental/automl-model-testing/regression
|
||||
working-directory: v1/python-sdk/experimental/automl-model-testing/regression
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: regression-TSI
|
||||
path: python-sdk/experimental/automl-model-testing/regression
|
||||
path: v1/python-sdk/experimental/automl-model-testing/regression
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/deepspeed/cifar/**
|
||||
- v1/python-sdk/workflows/train/deepspeed/cifar/**
|
||||
- .github/workflows/python-sdk-train-deepspeed-cifar-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/deepspeed/cifar/job.py
|
||||
run: python v1/python-sdk/workflows/train/deepspeed/cifar/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/deepspeed/transformers/**
|
||||
- v1/python-sdk/workflows/train/deepspeed/transformers/**
|
||||
- .github/workflows/python-sdk-train-deepspeed-transformers-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/deepspeed/transformers/job.py
|
||||
run: python v1/python-sdk/workflows/train/deepspeed/transformers/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/fastai/mnist/**
|
||||
- v1/python-sdk/workflows/train/fastai/mnist/**
|
||||
- .github/workflows/python-sdk-train-fastai-mnist-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/fastai/mnist/job.py
|
||||
run: python v1/python-sdk/workflows/train/fastai/mnist/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/fastai/mnist-mlproject/**
|
||||
- v1/python-sdk/workflows/train/fastai/mnist-mlproject/**
|
||||
- .github/workflows/python-sdk-train-fastai-mnist-mlproject-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/fastai/mnist-mlproject/job.py
|
||||
run: python v1/python-sdk/workflows/train/fastai/mnist-mlproject/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/fastai/pets/**
|
||||
- v1/python-sdk/workflows/train/fastai/pets/**
|
||||
- .github/workflows/python-sdk-train-fastai-pets-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/fastai/pets/job.py
|
||||
run: python v1/python-sdk/workflows/train/fastai/pets/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/lightgbm/iris/**
|
||||
- v1/python-sdk/workflows/train/lightgbm/iris/**
|
||||
- .github/workflows/python-sdk-train-lightgbm-iris-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/lightgbm/iris/job.py
|
||||
run: python v1/python-sdk/workflows/train/lightgbm/iris/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/pytorch/cifar-distributed/**
|
||||
- v1/python-sdk/workflows/train/pytorch/cifar-distributed/**
|
||||
- .github/workflows/python-sdk-train-pytorch-cifar-distributed-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/pytorch/cifar-distributed/job.py
|
||||
run: python v1/python-sdk/workflows/train/pytorch/cifar-distributed/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/pytorch/mnist/**
|
||||
- v1/python-sdk/workflows/train/pytorch/mnist/**
|
||||
- .github/workflows/python-sdk-train-pytorch-mnist-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/pytorch/mnist/job.py
|
||||
run: python v1/python-sdk/workflows/train/pytorch/mnist/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/pytorch/mnist-mlproject/**
|
||||
- v1/python-sdk/workflows/train/pytorch/mnist-mlproject/**
|
||||
- .github/workflows/python-sdk-train-pytorch-mnist-mlproject-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/pytorch/mnist-mlproject/job.py
|
||||
run: python v1/python-sdk/workflows/train/pytorch/mnist-mlproject/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/scikit-learn/diabetes/**
|
||||
- v1/python-sdk/workflows/train/scikit-learn/diabetes/**
|
||||
- .github/workflows/python-sdk-train-scikit-learn-diabetes-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/scikit-learn/diabetes/job.py
|
||||
run: python v1/python-sdk/workflows/train/scikit-learn/diabetes/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/scikit-learn/diabetes-mlproject/**
|
||||
- v1/python-sdk/workflows/train/scikit-learn/diabetes-mlproject/**
|
||||
- .github/workflows/python-sdk-train-scikit-learn-diabetes-mlproject-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/scikit-learn/diabetes-mlproject/job.py
|
||||
run: python v1/python-sdk/workflows/train/scikit-learn/diabetes-mlproject/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/tensorflow/mnist-distributed-horovod/**
|
||||
- v1/python-sdk/workflows/train/tensorflow/mnist-distributed-horovod/**
|
||||
- .github/workflows/python-sdk-train-tensorflow-mnist-distributed-horovod-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/tensorflow/mnist-distributed-horovod/job.py
|
||||
run: python v1/python-sdk/workflows/train/tensorflow/mnist-distributed-horovod/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/tensorflow/mnist-distributed/**
|
||||
- v1/python-sdk/workflows/train/tensorflow/mnist-distributed/**
|
||||
- .github/workflows/python-sdk-train-tensorflow-mnist-distributed-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/tensorflow/mnist-distributed/job.py
|
||||
run: python v1/python-sdk/workflows/train/tensorflow/mnist-distributed/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/tensorflow/mnist/**
|
||||
- v1/python-sdk/workflows/train/tensorflow/mnist/**
|
||||
- .github/workflows/python-sdk-train-tensorflow-mnist-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/tensorflow/mnist/job.py
|
||||
run: python v1/python-sdk/workflows/train/tensorflow/mnist/job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/transformers/glue/**
|
||||
- v1/python-sdk/workflows/train/transformers/glue/**
|
||||
- .github/workflows/python-sdk-train-transformers-glue-1-aml-finetune-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/transformers/glue/1-aml-finetune-job.py
|
||||
run: python v1/python-sdk/workflows/train/transformers/glue/1-aml-finetune-job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/transformers/glue/**
|
||||
- v1/python-sdk/workflows/train/transformers/glue/**
|
||||
- .github/workflows/python-sdk-train-transformers-glue-2-aml-comparison-of-sku-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/transformers/glue/2-aml-comparison-of-sku-job.py
|
||||
run: python v1/python-sdk/workflows/train/transformers/glue/2-aml-comparison-of-sku-job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/transformers/glue/**
|
||||
- v1/python-sdk/workflows/train/transformers/glue/**
|
||||
- .github/workflows/python-sdk-train-transformers-glue-3-aml-hyperdrive-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/transformers/glue/3-aml-hyperdrive-job.py
|
||||
run: python v1/python-sdk/workflows/train/transformers/glue/3-aml-hyperdrive-job.py
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/workflows/train/xgboost/iris/**
|
||||
- v1/python-sdk/workflows/train/xgboost/iris/**
|
||||
- .github/workflows/python-sdk-train-xgboost-iris-job.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -21,21 +21,21 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run workflow
|
||||
run: python python-sdk/workflows/train/xgboost/iris/job.py
|
||||
run: python v1/python-sdk/workflows/train/xgboost/iris/job.py
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-classification-bank-marketing-all-features
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-classification-bank-marketing-all-features.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-classification-bank-marketing-all-features.ipynb
|
||||
run: papermill -k python auto-ml-classification-bank-marketing-all-features.ipynb auto-ml-classification-bank-marketing-all-features.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-classification-bank-marketing-all-features.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features \
|
||||
--check warning
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-classification-bank-marketing-all-features.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features \
|
||||
--experiment_name automl-classification-bmarketing-all \
|
||||
--minimum_median_score 0.7 \
|
||||
--metric_name AUC_weighted
|
||||
|
@ -75,4 +75,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-classification-bank-marketing-all-features
|
||||
path: python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-classification-credit-card-fraud-local
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-classification-credit-card-fraud-local.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-classification-credit-card-fraud-local.ipynb
|
||||
run: papermill -k python auto-ml-classification-credit-card-fraud-local.ipynb auto-ml-classification-credit-card-fraud-local.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-classification-credit-card-fraud-local.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-classification-credit-card-fraud-local.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud \
|
||||
--experiment_name automl-classification-ccard-local \
|
||||
--minimum_median_score 0.6 \
|
||||
--metric_name average_precision_score_weighted \
|
||||
|
@ -77,4 +77,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-classification-credit-card-fraud-local
|
||||
path: python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/local-run-classification-credit-card-fraud
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-classification-credit-card-fraud
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-classification-credit-card-fraud.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-classification-credit-card-fraud.ipynb
|
||||
run: papermill -k python auto-ml-classification-credit-card-fraud.ipynb auto-ml-classification-credit-card-fraud.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-classification-credit-card-fraud.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-classification-credit-card-fraud.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud \
|
||||
--experiment_name automl-classification-ccard-remote \
|
||||
--minimum_median_score 0.6 \
|
||||
--metric_name average_precision_score_weighted
|
||||
|
@ -75,4 +75,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-classification-credit-card-fraud
|
||||
path: python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/classification-credit-card-fraud
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-classification-text-dnn
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/classification-text-dnn/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/classification-text-dnn/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-classification-text-dnn.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-classification-text-dnn.ipynb
|
||||
run: papermill -k python auto-ml-classification-text-dnn.ipynb auto-ml-classification-text-dnn.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/classification-text-dnn
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/classification-text-dnn
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-classification-text-dnn.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-text-dnn \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-text-dnn \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-classification-text-dnn.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-text-dnn \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-text-dnn \
|
||||
--experiment_name automl-classification-text-dnn \
|
||||
--minimum_median_score 0.3 \
|
||||
--metric_name accuracy
|
||||
|
@ -74,7 +74,7 @@ jobs:
|
|||
run: |
|
||||
python scripts/validation/check_cell_output.py \
|
||||
--file_name auto-ml-classification-text-dnn.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/classification-text-dnn \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/classification-text-dnn \
|
||||
--cell_source \
|
||||
"text_transformations_used = []\n" \
|
||||
"for column_group in fitted_model.named_steps['datatransformer'].get_featurization_summary():\n" \
|
||||
|
@ -86,4 +86,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-classification-text-dnn
|
||||
path: python-sdk/tutorials/automl-with-azureml/classification-text-dnn
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/classification-text-dnn
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-continuous-retraining
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/continuous-retraining/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/continuous-retraining/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-continuous-retraining.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,23 +48,23 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-continuous-retraining.ipynb
|
||||
run: papermill -k python auto-ml-continuous-retraining.ipynb auto-ml-continuous-retraining.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/continuous-retraining
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/continuous-retraining
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-continuous-retraining.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/continuous-retraining \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/continuous-retraining \
|
||||
--check warning
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-continuous-retraining
|
||||
path: python-sdk/tutorials/automl-with-azureml/continuous-retraining
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/continuous-retraining
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-backtest-many-models
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-backtest-many-models.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,18 +28,18 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: update conda env with the update_env.yml
|
||||
run: |
|
||||
conda env update --file python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models/update_env.yml
|
||||
conda env update --file v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models/update_env.yml
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
pip install papermill==2.3.3
|
||||
|
@ -51,17 +51,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-backtest-many-models.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-backtest-many-models.ipynb auto-ml-forecasting-backtest-many-models.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-backtest-many-models
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-many-models
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-backtest-single-model
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-backtest-single-model/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-single-model/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-backtest-single-model.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-backtest-single-model.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-backtest-single-model.ipynb auto-ml-forecasting-backtest-single-model.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-backtest-single-model
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-single-model
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-backtest-single-model
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-backtest-single-model
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-backtest-single-model
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-bike-share
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-bike-share/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-bike-share/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-bike-share.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-bike-share.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-bike-share.ipynb auto-ml-forecasting-bike-share.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-bike-share
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-bike-share
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-bike-share.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-bike-share \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-bike-share \
|
||||
--check warning
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-forecasting-bike-share.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-bike-share \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-bike-share \
|
||||
--experiment_name automl-bikeshareforecasting \
|
||||
--minimum_median_score 0.01 \
|
||||
--maximum_median_score 0.3 \
|
||||
|
@ -78,4 +78,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-bike-share
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-bike-share
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-bike-share
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-energy-demand
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-energy-demand.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-energy-demand.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-energy-demand.ipynb auto-ml-forecasting-energy-demand.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-energy-demand.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-forecasting-energy-demand.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand \
|
||||
--experiment_name automl-forecasting-energydemand \
|
||||
--expected_run_count 2 \
|
||||
--minimum_median_score 0.01 \
|
||||
|
@ -79,4 +79,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-energy-demand
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-energy-demand
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-function
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-function.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-function.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-function.ipynb auto-ml-forecasting-function.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-function.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-forecasting-function.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function \
|
||||
--experiment_name automl-forecast-function-demo \
|
||||
--expected_run_count 1 \
|
||||
--minimum_median_score 0.00 \
|
||||
|
@ -79,4 +79,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-function
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-forecast-function
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-github-dau
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-github-dau/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-github-dau/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-github-dau.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-github-dau.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-github-dau.ipynb auto-ml-forecasting-github-dau.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-github-dau
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-github-dau
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-github-dau
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-github-dau
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-github-dau
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-hierarchical-timeseries
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-hierarchical-timeseries.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,18 +28,18 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: update conda env with the update_env.yml
|
||||
run: |
|
||||
conda env update --file python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries/update_env.yml
|
||||
conda env update --file v1/python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries/update_env.yml
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
pip install papermill==2.3.3
|
||||
|
@ -51,29 +51,29 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-hierarchical-timeseries.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-hierarchical-timeseries.ipynb auto-ml-forecasting-hierarchical-timeseries.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-hierarchical-timeseries.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries \
|
||||
--check warning
|
||||
- name: check timeseries
|
||||
run: |
|
||||
python scripts/validation/check_timeseries.py \
|
||||
--file_name auto-ml-forecasting-hierarchical-timeseries.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries \
|
||||
--experiment_name automl-hts
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-hierarchical-timeseries
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-hierarchical-timeseries
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-many-models
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-many-models/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-many-models/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-many-models.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,18 +28,18 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: update conda env with the update_env.yml
|
||||
run: |
|
||||
conda env update --file python-sdk/tutorials/automl-with-azureml/forecasting-many-models/update_env.yml
|
||||
conda env update --file v1/python-sdk/tutorials/automl-with-azureml/forecasting-many-models/update_env.yml
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
pip install papermill==2.3.3
|
||||
|
@ -51,17 +51,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-many-models.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-many-models.ipynb auto-ml-forecasting-many-models.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-many-models
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-many-models
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-many-models
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-many-models
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-many-models
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-orange-juice-sales
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-orange-juice-sales.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-orange-juice-sales.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-orange-juice-sales.ipynb auto-ml-forecasting-orange-juice-sales.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-orange-juice-sales.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-forecasting-orange-juice-sales.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales \
|
||||
--experiment_name automl-ojforecasting \
|
||||
--minimum_median_score 0.01 \
|
||||
--maximum_median_score 0.3 \
|
||||
|
@ -78,4 +78,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-orange-juice-sales
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-orange-juice-sales
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-pipelines
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-pipelines/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-pipelines/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-pipelines.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,23 +48,23 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-pipelines.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-pipelines.ipynb auto-ml-forecasting-pipelines.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-pipelines
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-pipelines
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-pipelines.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-pipelines \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-pipelines \
|
||||
--check stderr
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-pipelines
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-pipelines
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-pipelines
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-univariate-recipe-experiment-settings
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-univariate-recipe-experiment-settings.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,23 +48,23 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-univariate-recipe-experiment-settings.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-univariate-recipe-experiment-settings.ipynb auto-ml-forecasting-univariate-recipe-experiment-settings.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-univariate-recipe-experiment-settings.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate \
|
||||
--check warning
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-univariate-recipe-experiment-settings
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-forecasting-univariate-recipe-run-experiment
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-forecasting-univariate-recipe-run-experiment.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-forecasting-univariate-recipe-run-experiment.ipynb
|
||||
run: papermill -k python auto-ml-forecasting-univariate-recipe-run-experiment.ipynb auto-ml-forecasting-univariate-recipe-run-experiment.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-forecasting-univariate-recipe-run-experiment.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-forecasting-univariate-recipe-run-experiment.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate \
|
||||
--experiment_name alcohol_diff-True_lags-None_STL-None \
|
||||
--minimum_median_score 0.1 \
|
||||
--maximum_median_score 0.45 \
|
||||
|
@ -78,4 +78,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-forecasting-univariate-recipe-run-experiment
|
||||
path: python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/forecasting-recipes-univariate
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-image-classification-multiclass-batch-scoring
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/image-classification-multiclass-batch-scoring/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/image-classification-multiclass-batch-scoring/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-image-classification-multiclass-batch-scoring.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-image-classification-multiclass-batch-scoring.ipynb
|
||||
run: papermill -k python auto-ml-image-classification-multiclass-batch-scoring.ipynb auto-ml-image-classification-multiclass-batch-scoring.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/image-classification-multiclass-batch-scoring
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/image-classification-multiclass-batch-scoring
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-image-classification-multiclass-batch-scoring
|
||||
path: python-sdk/tutorials/automl-with-azureml/image-classification-multiclass-batch-scoring
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/image-classification-multiclass-batch-scoring
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-image-classification-multiclass
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/image-classification-multiclass/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/image-classification-multiclass/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-image-classification-multiclass.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-image-classification-multiclass.ipynb
|
||||
run: papermill -k python auto-ml-image-classification-multiclass.ipynb auto-ml-image-classification-multiclass.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/image-classification-multiclass
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/image-classification-multiclass
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-image-classification-multiclass
|
||||
path: python-sdk/tutorials/automl-with-azureml/image-classification-multiclass
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/image-classification-multiclass
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-image-classification-multilabel
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/image-classification-multilabel/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/image-classification-multilabel/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-image-classification-multilabel.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-image-classification-multilabel.ipynb
|
||||
run: papermill -k python auto-ml-image-classification-multilabel.ipynb auto-ml-image-classification-multilabel.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/image-classification-multilabel
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/image-classification-multilabel
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-image-classification-multilabel
|
||||
path: python-sdk/tutorials/automl-with-azureml/image-classification-multilabel
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/image-classification-multilabel
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-image-instance-segmentation
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/image-instance-segmentation/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/image-instance-segmentation/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-image-instance-segmentation.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-image-instance-segmentation.ipynb
|
||||
run: papermill -k python auto-ml-image-instance-segmentation.ipynb auto-ml-image-instance-segmentation.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/image-instance-segmentation
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/image-instance-segmentation
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-image-instance-segmentation
|
||||
path: python-sdk/tutorials/automl-with-azureml/image-instance-segmentation
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/image-instance-segmentation
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-image-object-detection
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/image-object-detection/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/image-object-detection/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-image-object-detection.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-image-object-detection.ipynb
|
||||
run: papermill -k python auto-ml-image-object-detection.ipynb auto-ml-image-object-detection.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/image-object-detection
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/image-object-detection
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-image-object-detection
|
||||
path: python-sdk/tutorials/automl-with-azureml/image-object-detection
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/image-object-detection
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-regression-explanation-featurization
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/regression-explanation-featurization/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/regression-explanation-featurization/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-regression-explanation-featurization.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,17 +48,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-regression-explanation-featurization.ipynb
|
||||
run: papermill -k python auto-ml-regression-explanation-featurization.ipynb auto-ml-regression-explanation-featurization.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/regression-explanation-featurization
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/regression-explanation-featurization
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-regression-explanation-featurization
|
||||
path: python-sdk/tutorials/automl-with-azureml/regression-explanation-featurization
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/regression-explanation-featurization
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: auto-ml-regression
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/regression/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/regression/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-auto-ml-regression.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,14 +28,14 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -48,25 +48,25 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run auto-ml-regression.ipynb
|
||||
run: papermill -k python auto-ml-regression.ipynb auto-ml-regression.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/regression
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/regression
|
||||
- name: check notebook output
|
||||
run: |
|
||||
python scripts/validation/check_notebook_output.py \
|
||||
--file_name auto-ml-regression.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/regression \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/regression \
|
||||
--check warning stderr
|
||||
- name: check experiment result
|
||||
run: |
|
||||
python scripts/validation/check_experiment_result.py \
|
||||
--file_name auto-ml-regression.output.ipynb \
|
||||
--folder python-sdk/tutorials/automl-with-azureml/regression \
|
||||
--folder v1/python-sdk/tutorials/automl-with-azureml/regression \
|
||||
--experiment_name automl-regression \
|
||||
--minimum_median_score 0.45 \
|
||||
--metric_name r2_score \
|
||||
|
@ -76,4 +76,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: auto-ml-regression
|
||||
path: python-sdk/tutorials/automl-with-azureml/regression
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/regression
|
||||
|
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass/**
|
||||
- .github/workflows/python-sdk-tutorial-automl-nlp-multiclass.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -26,18 +26,18 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: update conda env with update_env.yml
|
||||
run: |
|
||||
conda env update --file python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass/update_env.yml
|
||||
conda env update --file v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass/update_env.yml
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
pip install papermill==2.3.3
|
||||
|
@ -49,17 +49,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run automl-nlp-text-classification-multiclass.ipynb
|
||||
run: papermill -k python automl-nlp-text-classification-multiclass.ipynb automl-nlp-text-classification-multiclass.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass/
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass/
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-text-classification-multiclass
|
||||
path: python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multiclass
|
||||
|
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel/**
|
||||
- .github/workflows/python-sdk-tutorial-automl-nlp-multilabel.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -26,18 +26,18 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: update conda env with update_env.yml
|
||||
run: |
|
||||
conda env update --file python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel/update_env.yml
|
||||
conda env update --file v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel/update_env.yml
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
pip install papermill==2.3.3
|
||||
|
@ -49,17 +49,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run automl-nlp-text-classification-multilabel.ipynb
|
||||
run: papermill -k python automl-nlp-text-classification-multilabel.ipynb automl-nlp-text-classification-multilabel.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel/
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel/
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-text-classification-multilabel
|
||||
path: python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-multilabel
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: automl-nlp-ner
|
||||
# This file is generated by python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
# This file is generated by v1/python-sdk/tutorials/automl-with-azureml/generate_workflows.py
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
|
@ -8,8 +8,8 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/automl-nlp-ner/**
|
||||
- python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-ner/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
- .github/workflows/python-sdk-tutorial-automl-nlp-ner.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -28,18 +28,18 @@ jobs:
|
|||
python-version: "3.8"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: update conda env with the update_env.yml
|
||||
run: |
|
||||
conda env update --file python-sdk/tutorials/automl-with-azureml/automl-nlp-ner/update_env.yml
|
||||
conda env update --file v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-ner/update_env.yml
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
pip install papermill==2.3.3
|
||||
|
@ -51,17 +51,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run automl-nlp-ner.ipynb
|
||||
run: papermill -k python automl-nlp-ner.ipynb automl-nlp-ner.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/automl-nlp-ner
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-ner
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-ner
|
||||
path: python-sdk/tutorials/automl-with-azureml/automl-nlp-ner
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/automl-nlp-ner
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- tutorials/automl-with-pycaret/**
|
||||
- v1/tutorials/automl-with-pycaret/**
|
||||
- .github/workflows/python-sdk/tutorial-automl-with-pycaret.yml
|
||||
- requirements.txt
|
||||
- v1/tutorials/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -20,7 +20,7 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
|
@ -31,4 +31,4 @@ jobs:
|
|||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run 1.classification.ipynb
|
||||
run: papermill 1.classification.ipynb - -k python
|
||||
working-directory: python-sdk/tutorials/automl-with-pycaret
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-pycaret
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/dataset-uploads/**
|
||||
- v1/python-sdk/tutorials/dataset-uploads/**
|
||||
- .github/workflows/python-sdk-tutorial-dataset-uploads.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -26,7 +26,7 @@ jobs:
|
|||
- name: downgrade pip
|
||||
run: pip install pip==21.1.1
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: temp installs
|
||||
run: pip install azureml-dataset-runtime azureml-dataprep
|
||||
- name: azure login
|
||||
|
@ -39,4 +39,4 @@ jobs:
|
|||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run ${{matrix.notebook}}
|
||||
run: papermill ${{matrix.notebook}} - -k python
|
||||
working-directory: python-sdk/tutorials/dataset-uploads
|
||||
working-directory: v1/python-sdk/tutorials/dataset-uploads
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/deploy-local/**
|
||||
- v1/python-sdk/tutorials/deploy-local/**
|
||||
- .github/workflows/python-sdk/tutorial-deploy-local.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: downgrade pip
|
||||
run: pip install pip==21.1.1
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
|
@ -33,7 +33,7 @@ jobs:
|
|||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run 1.deploy-local.ipynb
|
||||
run: papermill 1.deploy-local.ipynb - -k python
|
||||
working-directory: python-sdk/tutorials/deploy-local
|
||||
working-directory: v1/python-sdk/tutorials/deploy-local
|
||||
- name: run 2.deploy-local-cli.ipynb
|
||||
run: papermill 2.deploy-local-cli.ipynb - -k python
|
||||
working-directory: python-sdk/tutorials/deploy-local
|
||||
working-directory: v1/python-sdk/tutorials/deploy-local
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/experimental/deploy-triton/**
|
||||
- v1/python-sdk/experimental/deploy-triton/**
|
||||
- .github/workflows/pythno-sdk-tutorial-deploy-triton.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: downgrade pip
|
||||
run: pip install pip==21.1.1
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
|
@ -33,4 +33,4 @@ jobs:
|
|||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run 1.bidaf-ncd-local.ipynb
|
||||
run: papermill 1.bidaf-ncd-local.ipynb - -k python
|
||||
working-directory: python-sdk/experimental/deploy-triton
|
||||
working-directory: v1/python-sdk/experimental/deploy-triton
|
||||
|
|
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/automl-with-azureml/metrics/**
|
||||
- v1/python-sdk/tutorials/automl-with-azureml/metrics/**
|
||||
- .github/workflows/python-sdk-tutorial-binary-classification-metric-and-confidence-interval.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -26,14 +26,14 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: create automl conda environment
|
||||
uses: conda-incubator/setup-miniconda@v2
|
||||
with:
|
||||
activate-environment: azure_automl
|
||||
environment-file: python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
environment-file: v1/python-sdk/tutorials/automl-with-azureml/automl_env_linux.yml
|
||||
auto-activate-base: false
|
||||
- name: install papermill and set up the IPython kernel
|
||||
run: |
|
||||
|
@ -46,17 +46,17 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run binary-classification-metric-and-confidence-interval.ipynb
|
||||
run: papermill -k python binary-classification-metric-and-confidence-interval.ipynb binary-classification-metric-and-confidence-interval.output.ipynb
|
||||
working-directory: python-sdk/tutorials/automl-with-azureml/metrics
|
||||
working-directory: v1/python-sdk/tutorials/automl-with-azureml/metrics
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: binary-classification-metric-and-confidence-interval
|
||||
path: python-sdk/tutorials/automl-with-azureml/metrics
|
||||
path: v1/python-sdk/tutorials/automl-with-azureml/metrics
|
||||
|
|
|
@ -6,7 +6,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/train-on-low-priority-aml-compute/**
|
||||
- v1/python-sdk/tutorials/train-on-low-priority-aml-compute/**
|
||||
- .github/workflows/python-sdk-tutorial-train-on-low-priority-aml-compute.yml
|
||||
jobs:
|
||||
build:
|
||||
|
@ -20,11 +20,11 @@ jobs:
|
|||
python-version: "3.7"
|
||||
- name: Run Install packages
|
||||
run: |
|
||||
chmod +x ./scripts/install-packages.sh
|
||||
./scripts/install-packages.sh
|
||||
chmod +x ./v1/scripts/install-packages.sh
|
||||
./v1/scripts/install-packages.sh
|
||||
shell: bash
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: set up the IPython kernel
|
||||
run: |
|
||||
python -m ipykernel install --user --name azure_automl --display-name "Python (azure_automl)"
|
||||
|
@ -35,16 +35,16 @@ jobs:
|
|||
creds: ${{secrets.AZ_AE_CREDS}}
|
||||
- name: Run update-azure-extensions
|
||||
run: |
|
||||
chmod +x ./scripts/update-azure-extensions.sh
|
||||
./scripts/update-azure-extensions.sh
|
||||
chmod +x ./v1/scripts/update-azure-extensions.sh
|
||||
./v1/scripts/update-azure-extensions.sh
|
||||
shell: bash
|
||||
- name: attach to workspace
|
||||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run train-on-low-priority-aml-compute
|
||||
run: papermill -k python train-on-low-priority-aml-compute.ipynb train-on-low-priority-aml-compute.output.ipynb
|
||||
working-directory: python-sdk/tutorials/train-on-low-priority-aml-compute
|
||||
working-directory: v1/python-sdk/tutorials/train-on-low-priority-aml-compute
|
||||
- name: upload notebook's working folder as an artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: train-on-low-priority-aml-compute
|
||||
path: python-sdk/tutorials/train-on-low-priority-aml-compute
|
||||
path: v1/python-sdk/tutorials/train-on-low-priority-aml-compute
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/using-pipelines/**
|
||||
- v1/python-sdk/tutorials/using-pipelines/**
|
||||
- .github/workflows/python-sdk-tutorial-using-pipelines.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -26,7 +26,7 @@ jobs:
|
|||
- name: downgrade pip
|
||||
run: pip install pip==21.1.1
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: temp installs
|
||||
run: pip install azureml-pipeline azureml-pipeline-steps
|
||||
- name: azure login
|
||||
|
@ -39,4 +39,4 @@ jobs:
|
|||
run: az ml folder attach -w main -g azureml-examples
|
||||
- name: run ${{matrix.notebook}}
|
||||
run: papermill ${{matrix.notebook}} - -k python
|
||||
working-directory: python-sdk/tutorials/using-pipelines
|
||||
working-directory: v1/python-sdk/tutorials/using-pipelines
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/experimental/using-pytorch-lightning/**
|
||||
- v1/python-sdk/experimental/using-pytorch-lightning/**
|
||||
- .github/workflows/python-sdk-tutorial-using-pytorch-lightning.yml
|
||||
- pythno-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: downgrade pip
|
||||
run: pip install pip==21.1.1
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
|
@ -33,10 +33,10 @@ jobs:
|
|||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run 1.train-single-node.ipynb
|
||||
run: papermill 1.train-single-node.ipynb - -k python
|
||||
working-directory: python-sdk/experimental/using-pytorch-lightning
|
||||
working-directory: v1/python-sdk/experimental/using-pytorch-lightning
|
||||
- name: run 2.log-with-tensorboard.ipynb
|
||||
run: papermill 2.log-with-tensorboard.ipynb - -k python
|
||||
working-directory: python-sdk/experimental/using-pytorch-lightning
|
||||
working-directory: v1/python-sdk/experimental/using-pytorch-lightning
|
||||
- name: run 3.log-with-mlflow.ipynb
|
||||
run: papermill 3.log-with-mlflow.ipynb - -k python
|
||||
working-directory: python-sdk/experimental/using-pytorch-lightning
|
||||
working-directory: v1/python-sdk/experimental/using-pytorch-lightning
|
||||
|
|
|
@ -6,9 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- python-sdk/tutorials/using-rapids/**
|
||||
- v1/python-sdk/tutorials/using-rapids/**
|
||||
- .github/workflows/python-sdk-tutorial-using-rapids.yml
|
||||
- python-sdk/requirements.txt
|
||||
- v1/python-sdk/requirements.txt
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: install snappy
|
||||
run: sudo apt-get install libsnappy-dev
|
||||
- name: pip install
|
||||
run: pip install -r python-sdk/requirements.txt
|
||||
run: pip install -r v1/python-sdk/requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
|
@ -33,7 +33,7 @@ jobs:
|
|||
run: az ml folder attach -w main-python-sdk -g azureml-examples-rg
|
||||
- name: run 1.train-and-hpo.ipynb
|
||||
run: papermill 1.train-and-hpo.ipynb - -k python
|
||||
working-directory: python-sdk/tutorials/using-rapids
|
||||
working-directory: v1/python-sdk/tutorials/using-rapids
|
||||
- name: run 2.train-multi-gpu.ipynb
|
||||
run: papermill 2.train-multi-gpu.ipynb - -k python
|
||||
working-directory: python-sdk/tutorials/using-rapids
|
||||
working-directory: v1/python-sdk/tutorials/using-rapids
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-assets-component-component
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/assets/component/**
|
||||
- sdk/python/assets/component/**
|
||||
- .github/workflows/sdk-assets-component-component.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" component.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" component.ipynb
|
||||
papermill -k python component.ipynb component.output.ipynb
|
||||
working-directory: sdk/assets/component
|
||||
working-directory: sdk/python/assets/component
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: component
|
||||
path: sdk/assets/component
|
||||
path: sdk/python/assets/component
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-assets-data-data
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/assets/data/**
|
||||
- sdk/python/assets/data/**
|
||||
- .github/workflows/sdk-assets-data-data.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" data.ipynb
|
||||
|
||||
papermill -k python data.ipynb data.output.ipynb
|
||||
working-directory: sdk/assets/data
|
||||
working-directory: sdk/python/assets/data
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: data
|
||||
path: sdk/assets/data
|
||||
path: sdk/python/assets/data
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
name: sdk-assets-data-working_with_mltable
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 */8 * * *"
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/python/assets/data/**
|
||||
- .github/workflows/sdk-assets-data-working_with_mltable.yml
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: check out repo
|
||||
uses: actions/checkout@v2
|
||||
- name: setup python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
working-directory: cli
|
||||
continue-on-error: true
|
||||
- name: run assets/data/working_with_mltable.ipynb
|
||||
run: |
|
||||
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" working_with_mltable.ipynb
|
||||
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" working_with_mltable.ipynb
|
||||
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" working_with_mltable.ipynb
|
||||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" working_with_mltable.ipynb
|
||||
|
||||
papermill -k python working_with_mltable.ipynb working_with_mltable.output.ipynb
|
||||
working-directory: sdk/python/assets/data
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: working_with_mltable
|
||||
path: sdk/python/assets/data
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-assets-environment-environment
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/assets/environment/**
|
||||
- sdk/python/assets/environment/**
|
||||
- .github/workflows/sdk-assets-environment-environment.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" environment.ipynb
|
||||
|
||||
papermill -k python environment.ipynb environment.output.ipynb
|
||||
working-directory: sdk/assets/environment
|
||||
working-directory: sdk/python/assets/environment
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: environment
|
||||
path: sdk/assets/environment
|
||||
path: sdk/python/assets/environment
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-assets-model-model
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/assets/model/**
|
||||
- sdk/python/assets/model/**
|
||||
- .github/workflows/sdk-assets-model-model.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" model.ipynb
|
||||
|
||||
papermill -k python model.ipynb model.output.ipynb
|
||||
working-directory: sdk/assets/model
|
||||
working-directory: sdk/python/assets/model
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: model
|
||||
path: sdk/assets/model
|
||||
path: sdk/python/assets/model
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-batch-mnist-nonmlflow
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/batch/**
|
||||
- sdk/python/endpoints/batch/**
|
||||
- .github/workflows/sdk-endpoints-batch-mnist-nonmlflow.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" mnist-nonmlflow.ipynb
|
||||
|
||||
papermill -k python mnist-nonmlflow.ipynb mnist-nonmlflow.output.ipynb
|
||||
working-directory: sdk/endpoints/batch
|
||||
working-directory: sdk/python/endpoints/batch
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: mnist-nonmlflow
|
||||
path: sdk/endpoints/batch
|
||||
path: sdk/python/endpoints/batch
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-online-custom-container-online-endpoints-custom-container
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/online/custom-container/**
|
||||
- sdk/python/endpoints/online/custom-container/**
|
||||
- .github/workflows/sdk-endpoints-online-custom-container-online-endpoints-custom-container.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" online-endpoints-custom-container.ipynb
|
||||
|
||||
papermill -k python online-endpoints-custom-container.ipynb online-endpoints-custom-container.output.ipynb
|
||||
working-directory: sdk/endpoints/online/custom-container
|
||||
working-directory: sdk/python/endpoints/online/custom-container
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: online-endpoints-custom-container
|
||||
path: sdk/endpoints/online/custom-container
|
||||
path: sdk/python/endpoints/online/custom-container
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-online-custom-container-triton-online-endpoints-triton-cc
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/online/custom-container/triton/**
|
||||
- sdk/python/endpoints/online/custom-container/triton/**
|
||||
- .github/workflows/sdk-endpoints-online-custom-container-triton-online-endpoints-triton-cc.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" online-endpoints-triton-cc.ipynb
|
||||
|
||||
papermill -k python online-endpoints-triton-cc.ipynb online-endpoints-triton-cc.output.ipynb
|
||||
working-directory: sdk/endpoints/online/custom-container/triton
|
||||
working-directory: sdk/python/endpoints/online/custom-container/triton
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: online-endpoints-triton-cc
|
||||
path: sdk/endpoints/online/custom-container/triton
|
||||
path: sdk/python/endpoints/online/custom-container/triton
|
||||
|
|
|
@ -12,9 +12,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/**
|
||||
- sdk/python/**
|
||||
- .github/workflows/sdk-endpoints-online-kubernetes-kubernetes-online-endpoints-safe-rollout.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/python/dev-requirements.txt
|
||||
- .github/kubernetes-compute/tool.sh
|
||||
jobs:
|
||||
build:
|
||||
|
@ -37,14 +37,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: package installs
|
||||
run: sudo apt-get install xmlstarlet
|
||||
|
@ -62,7 +62,7 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" kubernetes-online-endpoints-safe-rollout.ipynb
|
||||
|
||||
papermill -k python kubernetes-online-endpoints-safe-rollout.ipynb kubernetes-online-endpoints-safe-rollout.output.ipynb
|
||||
working-directory: sdk/endpoints/online/kubernetes
|
||||
working-directory: sdk/python/endpoints/online/kubernetes
|
||||
|
||||
# report metrics
|
||||
- name: download_metrics_dependency
|
||||
|
@ -91,7 +91,7 @@ jobs:
|
|||
run: |
|
||||
if [ "$FILE_TICKET" == "true" ]; then
|
||||
export jobstatus=Failed
|
||||
export job="sdk/endpoints/online/kubernetes/kubernetes-online-endpoints-safe-rollout.ipynb"
|
||||
export job="sdk/python/endpoints/online/kubernetes/kubernetes-online-endpoints-safe-rollout.ipynb"
|
||||
bash .github/kubernetes-compute/tool.sh report_inference_metrics
|
||||
fi
|
||||
timeout-minutes: 30
|
||||
|
@ -100,7 +100,7 @@ jobs:
|
|||
run: |
|
||||
if [ "$FILE_TICKET" == "true" ]; then
|
||||
export jobstatus=Completed
|
||||
export job="sdk/endpoints/online/kubernetes/kubernetes-online-endpoints-safe-rollout.ipynb"
|
||||
export job="sdk/python/endpoints/online/kubernetes/kubernetes-online-endpoints-safe-rollout.ipynb"
|
||||
bash .github/kubernetes-compute/tool.sh report_inference_metrics
|
||||
fi
|
||||
timeout-minutes: 30
|
||||
|
@ -117,4 +117,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: kubernetes-online-endpoints-safe-rollout
|
||||
path: sdk/endpoints/online/kubernetes
|
||||
path: sdk/python/endpoints/online/kubernetes
|
||||
|
|
|
@ -12,9 +12,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/**
|
||||
- sdk/python/**
|
||||
- .github/workflows/sdk-endpoints-online-kubernetes-kubernetes-online-endpoints-simple-deployment.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/python/dev-requirements.txt
|
||||
- .github/kubernetes-compute/tool.sh
|
||||
jobs:
|
||||
build:
|
||||
|
@ -37,7 +37,7 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
|
@ -62,7 +62,7 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" kubernetes-online-endpoints-simple-deployment.ipynb
|
||||
|
||||
papermill -k python kubernetes-online-endpoints-simple-deployment.ipynb kubernetes-online-endpoints-simple-deployment.output.ipynb
|
||||
working-directory: sdk/endpoints/online/kubernetes
|
||||
working-directory: sdk/python/endpoints/online/kubernetes
|
||||
|
||||
# report metrics
|
||||
- name: download_metrics_dependency
|
||||
|
@ -91,7 +91,7 @@ jobs:
|
|||
run: |
|
||||
if [ "$FILE_TICKET" == "true" ]; then
|
||||
export jobstatus=Failed
|
||||
export job="sdk/endpoints/online/kubernetes/kubernetes-online-endpoints-simple-deployment.ipynb"
|
||||
export job="sdk/python/endpoints/online/kubernetes/kubernetes-online-endpoints-simple-deployment.ipynb"
|
||||
bash .github/kubernetes-compute/tool.sh report_inference_metrics
|
||||
fi
|
||||
timeout-minutes: 30
|
||||
|
@ -100,7 +100,7 @@ jobs:
|
|||
run: |
|
||||
if [ "$FILE_TICKET" == "true" ]; then
|
||||
export jobstatus=Completed
|
||||
export job="sdk/endpoints/online/kubernetes/kubernetes-online-endpoints-simple-deployment.ipynb"
|
||||
export job="sdk/python/endpoints/online/kubernetes/kubernetes-online-endpoints-simple-deployment.ipynb"
|
||||
bash .github/kubernetes-compute/tool.sh report_inference_metrics
|
||||
fi
|
||||
timeout-minutes: 30
|
||||
|
@ -117,4 +117,4 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: kubernetes-online-endpoints-simple-deployment
|
||||
path: sdk/endpoints/online/kubernetes
|
||||
path: sdk/python/endpoints/online/kubernetes
|
||||
|
|
54
.github/workflows/sdk-endpoints-online-managed-debug-online-endpoints-locally-in-visual-studio-code.yml
поставляемый
Normal file
54
.github/workflows/sdk-endpoints-online-managed-debug-online-endpoints-locally-in-visual-studio-code.yml
поставляемый
Normal file
|
@ -0,0 +1,54 @@
|
|||
name: sdk-endpoints-online-managed-debug-online-endpoints-locally-in-visual-studio-code
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 */8 * * *"
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/python/endpoints/online/managed/**
|
||||
- .github/workflows/sdk-endpoints-online-managed-debug-online-endpoints-locally-in-visual-studio-code.yml
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: check out repo
|
||||
uses: actions/checkout@v2
|
||||
- name: setup python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
working-directory: cli
|
||||
continue-on-error: true
|
||||
- name: run endpoints/online/managed/debug-online-endpoints-locally-in-visual-studio-code.ipynb
|
||||
run: |
|
||||
sed -i -e "s/<SUBSCRIPTION_ID>/6560575d-fa06-4e7d-95fb-f962e74efd7a/g" debug-online-endpoints-locally-in-visual-studio-code.ipynb
|
||||
sed -i -e "s/<RESOURCE_GROUP>/azureml-examples/g" debug-online-endpoints-locally-in-visual-studio-code.ipynb
|
||||
sed -i -e "s/<AML_WORKSPACE_NAME>/main/g" debug-online-endpoints-locally-in-visual-studio-code.ipynb
|
||||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" debug-online-endpoints-locally-in-visual-studio-code.ipynb
|
||||
|
||||
papermill -k python debug-online-endpoints-locally-in-visual-studio-code.ipynb debug-online-endpoints-locally-in-visual-studio-code.output.ipynb
|
||||
working-directory: sdk/python/endpoints/online/managed
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: debug-online-endpoints-locally-in-visual-studio-code
|
||||
path: sdk/python/endpoints/online/managed
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-online-managed-online-endpoints-safe-rollout
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/online/managed/**
|
||||
- sdk/python/endpoints/online/managed/**
|
||||
- .github/workflows/sdk-endpoints-online-managed-online-endpoints-safe-rollout.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" online-endpoints-safe-rollout.ipynb
|
||||
|
||||
papermill -k python online-endpoints-safe-rollout.ipynb online-endpoints-safe-rollout.output.ipynb
|
||||
working-directory: sdk/endpoints/online/managed
|
||||
working-directory: sdk/python/endpoints/online/managed
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: online-endpoints-safe-rollout
|
||||
path: sdk/endpoints/online/managed
|
||||
path: sdk/python/endpoints/online/managed
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-online-managed-online-endpoints-simple-deployment
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/online/managed/**
|
||||
- sdk/python/endpoints/online/managed/**
|
||||
- .github/workflows/sdk-endpoints-online-managed-online-endpoints-simple-deployment.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" online-endpoints-simple-deployment.ipynb
|
||||
|
||||
papermill -k python online-endpoints-simple-deployment.ipynb online-endpoints-simple-deployment.output.ipynb
|
||||
working-directory: sdk/endpoints/online/managed
|
||||
working-directory: sdk/python/endpoints/online/managed
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: online-endpoints-simple-deployment
|
||||
path: sdk/endpoints/online/managed
|
||||
path: sdk/python/endpoints/online/managed
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-online-mlflow-online-endpoints-deploy-mlflow-model
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/online/mlflow/**
|
||||
- sdk/python/endpoints/online/mlflow/**
|
||||
- .github/workflows/sdk-endpoints-online-mlflow-online-endpoints-deploy-mlflow-model.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" online-endpoints-deploy-mlflow-model.ipynb
|
||||
|
||||
papermill -k python online-endpoints-deploy-mlflow-model.ipynb online-endpoints-deploy-mlflow-model.output.ipynb
|
||||
working-directory: sdk/endpoints/online/mlflow
|
||||
working-directory: sdk/python/endpoints/online/mlflow
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: online-endpoints-deploy-mlflow-model
|
||||
path: sdk/endpoints/online/mlflow
|
||||
path: sdk/python/endpoints/online/mlflow
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-endpoints-online-triton-single-model-online-endpoints-triton
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/endpoints/online/triton/single-model/**
|
||||
- sdk/python/endpoints/online/triton/single-model/**
|
||||
- .github/workflows/sdk-endpoints-online-triton-single-model-online-endpoints-triton.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" online-endpoints-triton.ipynb
|
||||
|
||||
papermill -k python online-endpoints-triton.ipynb online-endpoints-triton.output.ipynb
|
||||
working-directory: sdk/endpoints/online/triton/single-model
|
||||
working-directory: sdk/python/endpoints/online/triton/single-model
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: online-endpoints-triton
|
||||
path: sdk/endpoints/online/triton/single-model
|
||||
path: sdk/python/endpoints/online/triton/single-model
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-classification-task-bankmarketing-automl-classification-task-bankmarketing-mlflow
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-classification-task-bankmarketing-automl-classification-task-bankmarketing-mlflow.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-classification-task-bankmarketing-mlflow.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-cpu-cluster automl-classification-task-bankmarketing-mlflow.ipynb automl-classification-task-bankmarketing-mlflow.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-classification-task-bankmarketing-mlflow
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-classification-task-bankmarketing-automl-classification-task-bankmarketing
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-classification-task-bankmarketing-automl-classification-task-bankmarketing.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-classification-task-bankmarketing.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-cpu-cluster automl-classification-task-bankmarketing.ipynb automl-classification-task-bankmarketing.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-classification-task-bankmarketing
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-forecasting-task-energy-demand-automl-forecasting-task-energy-demand-advanced-mlflow
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-forecasting-task-energy-demand-automl-forecasting-task-energy-demand-advanced-mlflow.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-forecasting-task-energy-demand-advanced-mlflow.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-cpu-cluster automl-forecasting-task-energy-demand-advanced-mlflow.ipynb automl-forecasting-task-energy-demand-advanced-mlflow.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-forecasting-task-energy-demand-advanced-mlflow
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-forecasting-task-energy-demand-automl-forecasting-task-energy-demand-advanced
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-forecasting-task-energy-demand-automl-forecasting-task-energy-demand-advanced.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-forecasting-task-energy-demand-advanced.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-cpu-cluster automl-forecasting-task-energy-demand-advanced.ipynb automl-forecasting-task-energy-demand-advanced.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-forecasting-task-energy-demand-advanced
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-forecasting-task-energy-demand
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-image-classification-multiclass-batch-scoring-image-classification-multiclass-batch-scoring-non-mlflow-model
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-image-classification-multiclass-batch-scoring/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multiclass-batch-scoring/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-image-classification-multiclass-batch-scoring-image-classification-multiclass-batch-scoring-non-mlflow-model.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" image-classification-multiclass-batch-scoring-non-mlflow-model.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-gpu-cluster image-classification-multiclass-batch-scoring-non-mlflow-model.ipynb image-classification-multiclass-batch-scoring-non-mlflow-model.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-image-classification-multiclass-batch-scoring
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multiclass-batch-scoring
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: image-classification-multiclass-batch-scoring-non-mlflow-model
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-image-classification-multiclass-batch-scoring
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multiclass-batch-scoring
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-image-classification-multiclass-task-fridge-items-automl-image-classification-multiclass-task-fridge-items
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-image-classification-multiclass-task-fridge-items/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multiclass-task-fridge-items/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-image-classification-multiclass-task-fridge-items-automl-image-classification-multiclass-task-fridge-items.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-image-classification-multiclass-task-fridge-items.ipynb
|
||||
|
||||
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
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-image-classification-multiclass-task-fridge-items
|
||||
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() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-image-classification-multiclass-task-fridge-items
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-image-classification-multiclass-task-fridge-items
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multiclass-task-fridge-items
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-image-classification-multilabel-task-fridge-items-automl-image-classification-multilabel-task-fridge-items
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-image-classification-multilabel-task-fridge-items/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multilabel-task-fridge-items/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-image-classification-multilabel-task-fridge-items-automl-image-classification-multilabel-task-fridge-items.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-image-classification-multilabel-task-fridge-items.ipynb
|
||||
|
||||
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
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-image-classification-multilabel-task-fridge-items
|
||||
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() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-image-classification-multilabel-task-fridge-items
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-image-classification-multilabel-task-fridge-items
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-image-classification-multilabel-task-fridge-items
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-image-instance-segmentation-task-fridge-items-automl-image-instance-segmentation-task-fridge-items
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-image-instance-segmentation-task-fridge-items/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-image-instance-segmentation-task-fridge-items/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-image-instance-segmentation-task-fridge-items-automl-image-instance-segmentation-task-fridge-items.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-image-instance-segmentation-task-fridge-items.ipynb
|
||||
|
||||
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
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-image-instance-segmentation-task-fridge-items
|
||||
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() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-image-instance-segmentation-task-fridge-items
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-image-instance-segmentation-task-fridge-items
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-image-instance-segmentation-task-fridge-items
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-image-object-detection-task-fridge-items-automl-image-object-detection-task-fridge-items
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-image-object-detection-task-fridge-items-automl-image-object-detection-task-fridge-items.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-image-object-detection-task-fridge-items.ipynb
|
||||
|
||||
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
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items
|
||||
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() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-image-object-detection-task-fridge-items
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-nlp-text-classification-multiclass-task-sentiment-analysis-automl-nlp-text-classification-multiclass-task-sentiment-mlflow
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-nlp-text-classification-multiclass-task-sentiment-analysis-automl-nlp-text-classification-multiclass-task-sentiment-mlflow.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,16 +24,16 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: pip install mlflow reqs
|
||||
run: pip install -r sdk/mlflow-requirements.txt
|
||||
run: pip install -r sdk/python/mlflow-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -47,10 +47,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-nlp-text-classification-multiclass-task-sentiment-mlflow.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-gpu-cluster automl-nlp-text-classification-multiclass-task-sentiment-mlflow.ipynb automl-nlp-text-classification-multiclass-task-sentiment-mlflow.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-text-classification-multiclass-task-sentiment-mlflow
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-nlp-text-classification-multiclass-task-sentiment-analysis-automl-nlp-text-classification-multiclass-task-sentiment
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-nlp-text-classification-multiclass-task-sentiment-analysis-automl-nlp-text-classification-multiclass-task-sentiment.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-nlp-text-classification-multiclass-task-sentiment.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-gpu-cluster automl-nlp-text-classification-multiclass-task-sentiment.ipynb automl-nlp-text-classification-multiclass-task-sentiment.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-text-classification-multiclass-task-sentiment
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multiclass-task-sentiment-analysis
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-nlp-text-classification-multilabel-task-paper-categorization-automl-nlp-text-classification-multilabel-task-paper-cat
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multilabel-task-paper-categorization/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multilabel-task-paper-categorization/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-nlp-text-classification-multilabel-task-paper-categorization-automl-nlp-text-classification-multilabel-task-paper-cat.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-nlp-text-classification-multilabel-task-paper-cat.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-gpu-cluster automl-nlp-text-classification-multilabel-task-paper-cat.ipynb automl-nlp-text-classification-multilabel-task-paper-cat.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multilabel-task-paper-categorization
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multilabel-task-paper-categorization
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-text-classification-multilabel-task-paper-cat
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-nlp-text-classification-multilabel-task-paper-categorization
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-classification-multilabel-task-paper-categorization
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-nlp-text-named-entity-recognition-task-automl-nlp-text-ner-task
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-nlp-text-named-entity-recognition-task/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-named-entity-recognition-task/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-nlp-text-named-entity-recognition-task-automl-nlp-text-ner-task.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-nlp-text-ner-task.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-gpu-cluster automl-nlp-text-ner-task.ipynb automl-nlp-text-ner-task.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-nlp-text-named-entity-recognition-task
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-named-entity-recognition-task
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-nlp-text-ner-task
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-nlp-text-named-entity-recognition-task
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-nlp-text-named-entity-recognition-task
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-automl-standalone-jobs-automl-regression-task-hardware-performance-automl-regression-task-hardware-performance
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/automl-standalone-jobs/automl-regression-task-hardware-performance/**
|
||||
- sdk/python/jobs/automl-standalone-jobs/automl-regression-task-hardware-performance/**
|
||||
- .github/workflows/sdk-jobs-automl-standalone-jobs-automl-regression-task-hardware-performance-automl-regression-task-hardware-performance.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" automl-regression-task-hardware-performance.ipynb
|
||||
|
||||
papermill -k python -p compute_name automl-cpu-cluster automl-regression-task-hardware-performance.ipynb automl-regression-task-hardware-performance.output.ipynb
|
||||
working-directory: sdk/jobs/automl-standalone-jobs/automl-regression-task-hardware-performance
|
||||
working-directory: sdk/python/jobs/automl-standalone-jobs/automl-regression-task-hardware-performance
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: automl-regression-task-hardware-performance
|
||||
path: sdk/jobs/automl-standalone-jobs/automl-regression-task-hardware-performance
|
||||
path: sdk/python/jobs/automl-standalone-jobs/automl-regression-task-hardware-performance
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-configuration
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/**
|
||||
- sdk/python/jobs/**
|
||||
- .github/workflows/sdk-jobs-configuration.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -45,10 +45,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" configuration.ipynb
|
||||
|
||||
papermill -k python configuration.ipynb configuration.output.ipynb
|
||||
working-directory: sdk/jobs
|
||||
working-directory: sdk/python/jobs
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: configuration
|
||||
path: sdk/jobs
|
||||
path: sdk/python/jobs
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-pipelines-1a_pipeline_with_components_from_yaml-pipeline_with_components_from_yaml
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/pipelines/1a_pipeline_with_components_from_yaml/**
|
||||
- sdk/python/jobs/pipelines/1a_pipeline_with_components_from_yaml/**
|
||||
- .github/workflows/sdk-jobs-pipelines-1a_pipeline_with_components_from_yaml-pipeline_with_components_from_yaml.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" pipeline_with_components_from_yaml.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" pipeline_with_components_from_yaml.ipynb
|
||||
papermill -k python pipeline_with_components_from_yaml.ipynb pipeline_with_components_from_yaml.output.ipynb
|
||||
working-directory: sdk/jobs/pipelines/1a_pipeline_with_components_from_yaml
|
||||
working-directory: sdk/python/jobs/pipelines/1a_pipeline_with_components_from_yaml
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pipeline_with_components_from_yaml
|
||||
path: sdk/jobs/pipelines/1a_pipeline_with_components_from_yaml
|
||||
path: sdk/python/jobs/pipelines/1a_pipeline_with_components_from_yaml
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-pipelines-1b_pipeline_with_python_function_components-pipeline_with_python_function_components
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/pipelines/1b_pipeline_with_python_function_components/**
|
||||
- sdk/python/jobs/pipelines/1b_pipeline_with_python_function_components/**
|
||||
- .github/workflows/sdk-jobs-pipelines-1b_pipeline_with_python_function_components-pipeline_with_python_function_components.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" pipeline_with_python_function_components.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" pipeline_with_python_function_components.ipynb
|
||||
papermill -k python pipeline_with_python_function_components.ipynb pipeline_with_python_function_components.output.ipynb
|
||||
working-directory: sdk/jobs/pipelines/1b_pipeline_with_python_function_components
|
||||
working-directory: sdk/python/jobs/pipelines/1b_pipeline_with_python_function_components
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pipeline_with_python_function_components
|
||||
path: sdk/jobs/pipelines/1b_pipeline_with_python_function_components
|
||||
path: sdk/python/jobs/pipelines/1b_pipeline_with_python_function_components
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-pipelines-1c_pipeline_with_hyperparameter_sweep-pipeline_with_hyperparameter_sweep
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/pipelines/1c_pipeline_with_hyperparameter_sweep/**
|
||||
- sdk/python/jobs/pipelines/1c_pipeline_with_hyperparameter_sweep/**
|
||||
- .github/workflows/sdk-jobs-pipelines-1c_pipeline_with_hyperparameter_sweep-pipeline_with_hyperparameter_sweep.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" pipeline_with_hyperparameter_sweep.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" pipeline_with_hyperparameter_sweep.ipynb
|
||||
papermill -k python pipeline_with_hyperparameter_sweep.ipynb pipeline_with_hyperparameter_sweep.output.ipynb
|
||||
working-directory: sdk/jobs/pipelines/1c_pipeline_with_hyperparameter_sweep
|
||||
working-directory: sdk/python/jobs/pipelines/1c_pipeline_with_hyperparameter_sweep
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pipeline_with_hyperparameter_sweep
|
||||
path: sdk/jobs/pipelines/1c_pipeline_with_hyperparameter_sweep
|
||||
path: sdk/python/jobs/pipelines/1c_pipeline_with_hyperparameter_sweep
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-pipelines-1d_pipeline_with_non_python_components-pipeline_with_non_python_components
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/pipelines/1d_pipeline_with_non_python_components/**
|
||||
- sdk/python/jobs/pipelines/1d_pipeline_with_non_python_components/**
|
||||
- .github/workflows/sdk-jobs-pipelines-1d_pipeline_with_non_python_components-pipeline_with_non_python_components.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" pipeline_with_non_python_components.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" pipeline_with_non_python_components.ipynb
|
||||
papermill -k python pipeline_with_non_python_components.ipynb pipeline_with_non_python_components.output.ipynb
|
||||
working-directory: sdk/jobs/pipelines/1d_pipeline_with_non_python_components
|
||||
working-directory: sdk/python/jobs/pipelines/1d_pipeline_with_non_python_components
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pipeline_with_non_python_components
|
||||
path: sdk/jobs/pipelines/1d_pipeline_with_non_python_components
|
||||
path: sdk/python/jobs/pipelines/1d_pipeline_with_non_python_components
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-pipelines-1e_pipeline_with_registered_components-pipeline_with_registered_components
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/pipelines/1e_pipeline_with_registered_components/**
|
||||
- sdk/python/jobs/pipelines/1e_pipeline_with_registered_components/**
|
||||
- .github/workflows/sdk-jobs-pipelines-1e_pipeline_with_registered_components-pipeline_with_registered_components.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" pipeline_with_registered_components.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" pipeline_with_registered_components.ipynb
|
||||
papermill -k python pipeline_with_registered_components.ipynb pipeline_with_registered_components.output.ipynb
|
||||
working-directory: sdk/jobs/pipelines/1e_pipeline_with_registered_components
|
||||
working-directory: sdk/python/jobs/pipelines/1e_pipeline_with_registered_components
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pipeline_with_registered_components
|
||||
path: sdk/jobs/pipelines/1e_pipeline_with_registered_components
|
||||
path: sdk/python/jobs/pipelines/1e_pipeline_with_registered_components
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: sdk-jobs-pipelines-1g_pipeline_with_parallel_nodes-pipeline_with_parallel_nodes
|
||||
# This file is created by sdk/readme.py.
|
||||
# This file is created by sdk/python/readme.py.
|
||||
# Please do not edit directly.
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -9,10 +9,10 @@ on:
|
|||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sdk/jobs/pipelines/1g_pipeline_with_parallel_nodes/**
|
||||
- sdk/python/jobs/pipelines/1g_pipeline_with_parallel_nodes/**
|
||||
- .github/workflows/sdk-jobs-pipelines-1g_pipeline_with_parallel_nodes-pipeline_with_parallel_nodes.yml
|
||||
- sdk/dev-requirements.txt
|
||||
- sdk/setup.sh
|
||||
- sdk/python/dev-requirements.txt
|
||||
- sdk/python/setup.sh
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -24,14 +24,14 @@ jobs:
|
|||
with:
|
||||
python-version: "3.8"
|
||||
- name: pip install notebook reqs
|
||||
run: pip install -r sdk/dev-requirements.txt
|
||||
run: pip install -r sdk/python/dev-requirements.txt
|
||||
- name: azure login
|
||||
uses: azure/login@v1
|
||||
with:
|
||||
creds: ${{secrets.AZ_CREDS}}
|
||||
- name: setup SDK
|
||||
run: bash setup.sh
|
||||
working-directory: sdk
|
||||
working-directory: sdk/python
|
||||
continue-on-error: true
|
||||
- name: setup CLI
|
||||
run: bash setup.sh
|
||||
|
@ -44,10 +44,10 @@ jobs:
|
|||
sed -i -e "s/DefaultAzureCredential/AzureCliCredential/g" pipeline_with_parallel_nodes.ipynb
|
||||
sed -i "s/@pipeline(/&force_rerun=True,/" pipeline_with_parallel_nodes.ipynb
|
||||
papermill -k python pipeline_with_parallel_nodes.ipynb pipeline_with_parallel_nodes.output.ipynb
|
||||
working-directory: sdk/jobs/pipelines/1g_pipeline_with_parallel_nodes
|
||||
working-directory: sdk/python/jobs/pipelines/1g_pipeline_with_parallel_nodes
|
||||
- name: upload notebook's working folder as an artifact
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pipeline_with_parallel_nodes
|
||||
path: sdk/jobs/pipelines/1g_pipeline_with_parallel_nodes
|
||||
path: sdk/python/jobs/pipelines/1g_pipeline_with_parallel_nodes
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче