Skip to content

Commit

Permalink
Merge branch 'main' into zetia/fix-nonexist
Browse files Browse the repository at this point in the history
  • Loading branch information
zetiaatgithub authored Sep 11, 2024
2 parents 996e276 + 28351c9 commit ffbd071
Show file tree
Hide file tree
Showing 35 changed files with 1,901 additions and 240 deletions.
6 changes: 2 additions & 4 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# See for instructions on this file https://help.github.com/articles/about-codeowners/

/cli/ @kingernupur @jayesh-tanna @achauhan-scc
/cli/ @kingernupur @jayesh-tanna @achauhan-scc @imatiach-msft
/infra/ @kingernupur @jayesh-tanna @achauhan-scc
/sdk/python/ @kingernupur @jayesh-tanna @achauhan-scc
/setup/ @kingernupur @jayesh-tanna @achauhan-scc
/tutorials/ @kingernupur @jayesh-tanna @achauhan-scc

/python-sdk/tutorials/automl-with-azureml @rtanase @cesardelatorre @anupsms @jeff-shepherd @raduk @swatig007 @MercyPrasanna @PhaniShekhar @sjinthehouse @vadthyavath @mispa-ms

Expand Down Expand Up @@ -246,6 +243,7 @@ sdk/python/foundation-models/cohere/command_tools-langchain.ipynb @stewart-co @k
/sdk/python/jobs/pipelines/2e_image_classification_keras_minist_convnet/train/train_component.py @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/sdk/python/using-mlflow/deploy/environment/conda.yaml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/sdk/python/using-mlflow/deploy/model/conda.yaml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/sdk/python/jobs/finetuning/standalone/chat-completion/chat_completion_with_model_as_service.ipynb @sagarsumant @srsaggam
/setup/setup-ci/install-pip-package.sh @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/setup/setup-repo/azure-github.sh @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
/tutorials/get-started-notebooks/workstation_env.yml @sdgilley @msakande @Blackmist @ssalgadodev @lgayhardt @fbsolo-ms1
Expand Down
4 changes: 4 additions & 0 deletions .github/test/scripts/check_notebook_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@
"Detected ",
"FutureWarning: promote has been superseded by mode",
"dataframe_reader.complete_incoming_dataframe",
(
"google.protobuf.service module is deprecated. RPC implementations should provide code generator plugins "
"which generate code specific to the RPC implementation. service.py will be removed in Jan 2025"
),
]

with open(full_name, "r") as notebook_file:
Expand Down
123 changes: 0 additions & 123 deletions cli/deploy-custom-container-torchserve-huggingface-textgen.sh

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 1 addition & 0 deletions cli/endpoints/online/ncd/lightgbm-iris/model/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ dependencies:
- pandas==2.0.0
- psutil==5.9.4
- typing-extensions==4.5.0
- numpy==1.26.4
name: mlflow-env
1 change: 1 addition & 0 deletions cli/endpoints/online/ncd/sklearn-diabetes/model/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ dependencies:
- scikit-learn==1.2.2
- cloudpickle==2.2.1
- psutil==5.9.4
- numpy==1.26.4
name: mlflow-env
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ outputs:
type: path

code: ./train.py
environment: azureml://registries/azureml/environments/responsibleai-ubuntu20.04-py38-cpu/versions/55
environment: azureml://registries/azureml/environments/responsibleai-tabular/versions/4
command: >-
python train.py
--training_data ${{inputs.training_data}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ outputs:
type: path

code: ./train.py
environment: azureml://registries/azureml/environments/responsibleai-ubuntu20.04-py38-cpu/versions/55
environment: azureml://registries/azureml/environments/responsibleai-tabular/versions/4
command: >-
python train.py
--training_data ${{inputs.training_data}}
Expand Down
15 changes: 15 additions & 0 deletions infra/validation/schema_valdiation.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$validation_list = "pipelineComponent,workspace,environment,dataset,model"
$validation_entities = $validation_list.split(",");
foreach ($validation_entity in $validation_entities) {
Write-Output $validation_entity
$uri = "https://azuremlschemas.azureedge.net/latest/$validation_entity.schema.json"
Write-Output "validating $uri"
$response = Invoke-RestMethod -Uri $uri -Method Get
if ([bool]($response.PSobject.Properties.name -match "definitions")){
Write-Output "success $validation_entity"
}
else{
Write-Output "fail $validation_entity"
throw [System.IO.FileNotFoundException] "$validation_entity not found."
}
}
Loading

0 comments on commit ffbd071

Please sign in to comment.