-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into zetia/fix-nonexist
- Loading branch information
Showing
35 changed files
with
1,901 additions
and
240 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 0 additions & 123 deletions
123
cli/deploy-custom-container-torchserve-huggingface-textgen.sh
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
cli/endpoints/online/custom-container/torchserve/huggingface-textgen/README.md
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
cli/endpoints/online/custom-container/torchserve/huggingface-textgen/ts-hf-tg-deployment.yml
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
...dpoints/online/custom-container/torchserve/huggingface-textgen/ts-hf-tg-setup_config.json
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
cli/endpoints/online/custom-container/torchserve/huggingface-textgen/ts-hf-tg.dockerfile
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
} | ||
} |
Oops, something went wrong.