Skip to content

Commit

Permalink
Update pipeline components with new environments.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdondera-microsoft committed Oct 25, 2024
1 parent adb3c73 commit 62527a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponent.schema.json
type: pipeline

version: 0.0.20
version: 0.0.21
name: image_classification_pipeline
display_name: Image Classification Pipeline
description: Pipeline component for image classification.
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:

hugging_face_model_import:
type: command
component: azureml:transformers_image_classification_model_import:0.0.18
component: azureml:transformers_image_classification_model_import:0.0.19
compute: ${{parent.inputs.compute_model_import}}
inputs:
model_family: 'HuggingFaceImage'
Expand All @@ -329,7 +329,7 @@ jobs:

hugging_face_finetune:
type: command
component: azureml:transformers_image_classification_finetune:0.0.18
component: azureml:transformers_image_classification_finetune:0.0.19
compute: ${{parent.inputs.compute_finetune}}
distribution:
type: pytorch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponent.schema.json
type: pipeline

version: 0.0.8
version: 0.0.9
name: diffusers_text_to_image_dreambooth_pipeline
display_name: Text to Image Dreambooth Finetuning Diffusers Pipeline
description: Pipeline component for text to image dreambooth training using diffusers library and transformers models.
Expand Down Expand Up @@ -412,7 +412,7 @@ outputs:
jobs:
text_to_image_model_import:
type: command
component: azureml:diffusers_text_to_image_model_import:0.0.8
component: azureml:diffusers_text_to_image_model_import:0.0.9
compute: ${{parent.inputs.compute_model_import}}
inputs:
model_family: ${{parent.inputs.model_family}}
Expand All @@ -423,7 +423,7 @@ jobs:

text_to_image_dreambooth_finetune:
type: command
component: azureml:diffusers_text_to_image_finetune:0.0.8
component: azureml:diffusers_text_to_image_finetune:0.0.9
compute: ${{parent.inputs.compute_finetune}}
distribution:
type: pytorch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponent.schema.json
type: pipeline

version: 0.0.20
version: 0.0.21
name: transformers_image_classification_pipeline
display_name: Image Classification HuggingFace Transformers Pipeline
description: Pipeline component for image classification using HuggingFace transformers models.
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:

image_classification_model_import:
type: command
component: azureml:transformers_image_classification_model_import:0.0.18
component: azureml:transformers_image_classification_model_import:0.0.19
compute: ${{parent.inputs.compute_model_import}}
inputs:
model_family: ${{parent.inputs.model_family}}
Expand All @@ -428,7 +428,7 @@ jobs:

image_classification_finetune:
type: command
component: azureml:transformers_image_classification_finetune:0.0.18
component: azureml:transformers_image_classification_finetune:0.0.19
compute: ${{parent.inputs.compute_finetune}}
distribution:
type: pytorch
Expand Down

0 comments on commit 62527a9

Please sign in to comment.