Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into mabables/foundation-m…
Browse files Browse the repository at this point in the history
…odels

# Conflicts:
#	sdk/python/README.md
  • Loading branch information
Sarthak Singhal committed Apr 13, 2023
2 parents 986407f + d826128 commit 18b4ce6
Show file tree
Hide file tree
Showing 452 changed files with 115,725 additions and 2,144 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning stderr"
}
},
{
"name": "check v2 experiment result",
"params": {
"experiment_name": "dpv2-forecasting-experiment",
"minimum_median_score": "0.01",
"maximum_median_score": "0.3",
"metric_name": "normalized_root_mean_squared_error",
"absolute_minimum_score": "0.0",
"absolute_maximum_score": "1.0"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning"
}
},
{
"name": "check v2 experiment result",
"params": {
"experiment_name": "dpv2-bike-test",
"minimum_median_score": "0.01",
"maximum_median_score": "0.3",
"metric_name": "normalized_root_mean_squared_error",
"absolute_minimum_score": "0.0",
"absolute_maximum_score": "1.0"
}
}
]
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning stderr"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning stderr"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning stderr"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"validations": [
{
"name": "check notebook output",
"params": {
"check": "warning stderr"
}
}
]
}
49 changes: 49 additions & 0 deletions .github/workflows/cli-assets-component-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# This code is autogenerated.
# Code is generated by running custom script: python3 readme.py
# Any manual changes to this file may cause incorrect behavior.
# Any manual changes will be overwritten if the code is regenerated.

name: cli-assets-component-pipeline
on:
workflow_dispatch:
schedule:
- cron: "4 6/12 * * *"
pull_request:
branches:
- main
paths:
- cli/assets/component/pipeline.yml
- infra/**
- .github/workflows/cli-assets-component-pipeline.yml
- cli/setup.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: check out repo
uses: actions/checkout@v2
- name: azure login
uses: azure/login@v1
with:
creds: ${{secrets.AZUREML_CREDENTIALS}}
- name: bootstrap resources
run: |
bash bootstrap.sh
working-directory: infra
continue-on-error: false
- name: setup-cli
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
bash setup.sh
working-directory: cli
continue-on-error: true
- name: create asset
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml component create -f assets/component/pipeline.yml
working-directory: cli
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# This code is autogenerated.
# Code is generated by running custom script: python3 readme.py
# Any manual changes to this file may cause incorrect behavior.
# Any manual changes will be overwritten if the code is regenerated.

name: cli-endpoints-batch-deploy-models-custom-outputs-parquet-endpoint
on:
workflow_dispatch:
schedule:
- cron: "18 11/12 * * *"
pull_request:
branches:
- main
paths:
- cli/endpoints/batch/deploy-models/custom-outputs-parquet/**
- infra/**
- .github/workflows/cli-endpoints-batch-deploy-models-custom-outputs-parquet-endpoint.yml
- cli/setup.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: check out repo
uses: actions/checkout@v2
- name: azure login
uses: azure/login@v1
with:
creds: ${{secrets.AZUREML_CREDENTIALS}}
- name: bootstrap resources
run: |
bash bootstrap.sh
working-directory: infra
continue-on-error: false
- name: setup-cli
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
bash setup.sh
working-directory: cli
continue-on-error: true
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml batch-endpoint delete -n customoutputsparquetendpoint -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
cat endpoints/batch/deploy-models/custom-outputs-parquet/endpoint.yml
az ml batch-endpoint create -n customoutputsparquetendpoint -f endpoints/batch/deploy-models/custom-outputs-parquet/endpoint.yml
working-directory: cli
- name: create deployment
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
cat endpoints/batch/deploy-models/custom-outputs-parquet/deployment.yml
az ml batch-deployment create -e customoutputsparquetendpoint -f endpoints/batch/deploy-models/custom-outputs-parquet/deployment.yml
working-directory: cli
- name: cleanup endpoint
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml batch-endpoint delete -n customoutputsparquetendpoint -y
working-directory: cli
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# This code is autogenerated.
# Code is generated by running custom script: python3 readme.py
# Any manual changes to this file may cause incorrect behavior.
# Any manual changes will be overwritten if the code is regenerated.

name: cli-endpoints-batch-deploy-models-heart-classifier-mlflow-endpoint
on:
workflow_dispatch:
schedule:
- cron: "18 11/12 * * *"
pull_request:
branches:
- main
paths:
- cli/endpoints/batch/deploy-models/heart-classifier-mlflow/**
- infra/**
- .github/workflows/cli-endpoints-batch-deploy-models-heart-classifier-mlflow-endpoint.yml
- cli/setup.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: check out repo
uses: actions/checkout@v2
- name: azure login
uses: azure/login@v1
with:
creds: ${{secrets.AZUREML_CREDENTIALS}}
- name: bootstrap resources
run: |
bash bootstrap.sh
working-directory: infra
continue-on-error: false
- name: setup-cli
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
bash setup.sh
working-directory: cli
continue-on-error: true
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml batch-endpoint delete -n heartclassifiermlflowendpoint -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
cat endpoints/batch/deploy-models/heart-classifier-mlflow/endpoint.yml
az ml batch-endpoint create -n heartclassifiermlflowendpoint -f endpoints/batch/deploy-models/heart-classifier-mlflow/endpoint.yml
working-directory: cli
- name: cleanup endpoint
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml batch-endpoint delete -n heartclassifiermlflowendpoint -y
working-directory: cli
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# This code is autogenerated.
# Code is generated by running custom script: python3 readme.py
# Any manual changes to this file may cause incorrect behavior.
# Any manual changes will be overwritten if the code is regenerated.

name: cli-endpoints-batch-deploy-models-huggingface-text-summarization-endpoint
on:
workflow_dispatch:
schedule:
- cron: "18 11/12 * * *"
pull_request:
branches:
- main
paths:
- cli/endpoints/batch/deploy-models/huggingface-text-summarization/**
- infra/**
- .github/workflows/cli-endpoints-batch-deploy-models-huggingface-text-summarization-endpoint.yml
- cli/setup.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: check out repo
uses: actions/checkout@v2
- name: azure login
uses: azure/login@v1
with:
creds: ${{secrets.AZUREML_CREDENTIALS}}
- name: bootstrap resources
run: |
bash bootstrap.sh
working-directory: infra
continue-on-error: false
- name: setup-cli
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
bash setup.sh
working-directory: cli
continue-on-error: true
- name: delete endpoint if existing
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml batch-endpoint delete -n facetextsummarizationendpoint -y
working-directory: cli
continue-on-error: true
- name: create endpoint
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
cat endpoints/batch/deploy-models/huggingface-text-summarization/endpoint.yml
az ml batch-endpoint create -n facetextsummarizationendpoint -f endpoints/batch/deploy-models/huggingface-text-summarization/endpoint.yml
working-directory: cli
- name: create deployment
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
cat endpoints/batch/deploy-models/huggingface-text-summarization/deployment.yml
az ml batch-deployment create -e facetextsummarizationendpoint -f endpoints/batch/deploy-models/huggingface-text-summarization/deployment.yml
working-directory: cli
- name: cleanup endpoint
run: |
source "${{ github.workspace }}/infra/sdk_helpers.sh";
source "${{ github.workspace }}/infra/init_environment.sh";
az ml batch-endpoint delete -n facetextsummarizationendpoint -y
working-directory: cli
Loading

0 comments on commit 18b4ce6

Please sign in to comment.