Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Component update with new model management environment version #861

Merged
merged 1 commit into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json

name: convert_model_to_mlflow
version: 0.0.9
version: 0.0.10
type: command

is_deterministic: True

display_name: Convert Hugging face models to MLflow
description: Component converts Huggingface models to MLflow model packaging format

environment: azureml://registries/azureml/environments/model-management/versions/11
environment: azureml://registries/azureml/environments/model-management/versions/12

code: ../../src/
command: >
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json

name: download_model
version: 0.0.7
version: 0.0.8
type: command

is_deterministic: True

display_name: Download model
description: Downloads a publicly available model

environment: azureml://registries/azureml/environments/model-management/versions/11
environment: azureml://registries/azureml/environments/model-management/versions/12

code: ../../src/
command: >
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type: pipeline
name: import_model
display_name: Import model
description: Import a model into a workspace or a registry
version: 0.0.8
version: 0.0.9

# Pipeline inputs
inputs:
Expand Down Expand Up @@ -177,7 +177,7 @@ outputs:

jobs:
download_model:
component: azureml:download_model:0.0.7
component: azureml:download_model:0.0.8
compute: ${{parent.inputs.compute}}
resources:
instance_type: '${{parent.inputs.instance_type}}'
Expand All @@ -191,7 +191,7 @@ jobs:
type: uri_folder

convert_model_to_mlflow:
component: azureml:convert_model_to_mlflow:0.0.9
component: azureml:convert_model_to_mlflow:0.0.10
compute: ${{parent.inputs.compute}}
resources:
instance_type: '${{parent.inputs.instance_type}}'
Expand Down
Loading