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

Upgrade NLP and Vision AutoML components to fix the notebooks #3701

Merged
merged 6 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
type: command

version: 0.0.7
version: 0.0.8
name: finetune_common_validation
display_name: Common Validation Component
description: Component to validate the finetune job against Validation Service

is_deterministic: True

environment: azureml://registries/azureml/environments/acpt-pytorch-2.2-cuda12.1/versions/23
environment: azureml://registries/azureml/environments/acpt-pytorch-2.2-cuda12.1/labels/latest

code: ../../src/validation

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: text_classification_finetune
version: 0.0.65
version: 0.0.66
type: command

is_deterministic: false

display_name: Text Classification Finetune
description: Component to finetune Hugging Face pretrained models for text classification task. The component supports optimizations such as LoRA, Deepspeed and ONNXRuntime for performance enhancement. See [docs](https://aka.ms/azureml/components/text_classification_finetune) to learn more.

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/80
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/finetune

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: token_classification_finetune
version: 0.0.65
version: 0.0.66
type: command

is_deterministic: false

display_name: Token Classification Finetune
description: Component to finetune Hugging Face pretrained models for token classification task. The component supports optimizations such as LoRA, Deepspeed and ONNXRuntime for performance enhancement. See [docs](https://aka.ms/azureml/components/token_classification_finetune) to learn more.

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/80
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/finetune

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: text_classification_model_import
version: 0.0.65
version: 0.0.66
type: command

is_deterministic: True

display_name: Text Classification Model Import
description: Component to import PyTorch / MLFlow model. See [docs](https://aka.ms/azureml/components/text_classification_model_import) to learn more.

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/80
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/model_selector

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: token_classification_model_import
version: 0.0.65
version: 0.0.66
type: command

is_deterministic: True

display_name: Token Classification Model Import
description: Component to import PyTorch / MLFlow model. See [docs](https://aka.ms/azureml/components/token_classification_model_import) to learn more.

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/80
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/model_selector

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: nlp_multiclass_datapreprocessing
version: 0.0.1
version: 0.0.2
type: command

is_deterministic: True

display_name: DataPreProcessing for AutoMLNLPMulticlass
description: Component to preprocess data for automl nlp multiclass classification task

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/16
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/preprocess

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: nlp_multilabel_datapreprocessing
version: 0.0.1
version: 0.0.2
type: command

is_deterministic: True

display_name: DataPreProcessing for AutoMLNLPMultilabel
description: Component to preprocess data for automl nlp multilabel classification task

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/16
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/preprocess

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json
name: nlp_ner_datapreprocessing
version: 0.0.1
version: 0.0.2
type: command

is_deterministic: True

display_name: DataPreProcessing for AutoMLNLPNER
description: Component to preprocess data for automl nlp ner task

environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/versions/16
environment: azureml://registries/azureml/environments/acft-hf-nlp-gpu/labels/latest

code: ../../../src/preprocess

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

version: 0.0.19
version: 0.0.20
name: transformers_image_classification_finetune
display_name: Image Classification HuggingFace Transformers Model Finetune
description: Component to finetune HuggingFace transformers models for image classification.

is_deterministic: false

environment: azureml://registries/azureml/environments/acft-transformers-image-gpu/versions/46
environment: azureml://registries/azureml/environments/acft-transformers-image-gpu/labels/latest

code: ../../../src/finetune

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

version: 0.0.20
version: 0.0.21
name: mmdetection_image_objectdetection_instancesegmentation_finetune
display_name: Image Object Detection and Instance Segmentation MMDetection Model Finetune
description: Component to finetune MMDetection models for image object detection and instance segmentation.

is_deterministic: false

environment: azureml://registries/azureml/environments/acft-mmdetection-image-gpu/versions/48
environment: azureml://registries/azureml/environments/acft-mmdetection-image-gpu/labels/latest

code: ../../../src/finetune

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$schema: https://azuremlschemas.azureedge.net/development/commandComponent.schema.json
type: command

version: 0.0.19
version: 0.0.20
name: image_framework_selector
display_name: Framework Selector for Image Tasks
description: Framework selector control flow component for image tasks

is_deterministic: true

environment: azureml://registries/azureml/environments/acpt-automl-image-framework-selector-gpu/versions/44
environment: azureml://registries/azureml/environments/acpt-automl-image-framework-selector-gpu/labels/latest

code: ../../src/framework_selector

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

version: 0.0.19
version: 0.0.20
name: transformers_image_classification_model_import
display_name: Image Classification HuggingFace Transformers Model Import
description: Import PyTorch / MLflow model

is_deterministic: True

environment: azureml://registries/azureml/environments/acft-transformers-image-gpu/versions/46
environment: azureml://registries/azureml/environments/acft-transformers-image-gpu/labels/latest

code: ../../../src/model_selector

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

version: 0.0.19
version: 0.0.20
name: mmdetection_image_objectdetection_instancesegmentation_model_import
display_name: Image Object Detection and Instance Segmentation MMDetection Model Import
description: Import PyTorch / MLflow model

is_deterministic: True

environment: azureml://registries/azureml/environments/acft-mmdetection-image-gpu/versions/46
environment: azureml://registries/azureml/environments/acft-mmdetection-image-gpu/labels/latest

code: ../../../src/model_selector

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

version: 0.0.18
version: 0.0.19
name: image_model_output_selector
display_name: Model output selector for image components
description: Model output selector control flow component for image tasks

is_deterministic: true

environment: azureml://registries/azureml/environments/acpt-automl-image-framework-selector-gpu/versions/44
environment: azureml://registries/azureml/environments/acpt-automl-image-framework-selector-gpu/labels/latest

code: ../../src/model_output_selector

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Component to finetune AutoML legacy models for image classification

name: train_image_classification_model
display_name: Image Classification AutoML Legacy Model Finetune
version: 0.0.12
version: 0.0.13

is_deterministic: false

Expand Down Expand Up @@ -188,7 +188,7 @@ outputs:

code: ../src

environment: azureml://registries/azureml/environments/automl-dnn-vision-gpu/versions/34
environment: azureml://registries/azureml/environments/automl-dnn-vision-gpu/labels/latest

command: >-
python -m image_classification.run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Component to finetune AutoML legacy models for instance segmentatio

name: train_instance_segmentation_model
display_name: Image Instance Segmentation AutoML Legacy Model Finetune
version: 0.0.12
version: 0.0.13

is_deterministic: false

Expand Down Expand Up @@ -220,7 +220,7 @@ outputs:

code: ../src

environment: azureml://registries/azureml/environments/automl-dnn-vision-gpu/versions/34
environment: azureml://registries/azureml/environments/automl-dnn-vision-gpu/labels/latest

command: >-
python -m instance_segmentation.run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Component to finetune AutoML legacy models for object detection.

name: train_object_detection_model
display_name: Image Object Detection AutoML Legacy Model Finetune
version: 0.0.12
version: 0.0.13

is_deterministic: false

Expand Down Expand Up @@ -230,7 +230,7 @@ outputs:

code: ../src

environment: azureml://registries/azureml/environments/automl-dnn-vision-gpu/versions/34
environment: azureml://registries/azureml/environments/automl-dnn-vision-gpu/labels/latest

command: >-
python -m object_detection.run
Expand Down
Loading