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

fix: schemas for batch examples #2962

Merged
merged 1 commit into from
Jan 22, 2024
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,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: heart-classifier-batch
name: classifier-xgboost-custom
description: A heart condition classifier based on XGBoost and Scikit-Learn pipelines that append predictions on parquet files.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: heart-classifier-batch
name: classifier-xgboost-custom
description: A heart condition classifier based on XGBoost
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: heart-classifier-batch
name: classifier-xgboost-mlflow
description: A heart condition classifier based on XGBoost
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: text-summarization-batch
name: text-summarization-optimum
description: A text summarization deployment implemented with HuggingFace and BART architecture with GPU optimization using Optimum.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: imagenet-classifier-batch
name: imagenet-classifier-resnetv2
description: A ResNetV2 model architecture for performing ImageNet classification in batch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: imagenet-classifier-batch
name: imagenet-classifier-resnetv2
description: A ResNetV2 model architecture for performing ImageNet classification in batch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
name: mnist-keras-dpl
description: A deployment using Keras with TensorFlow to solve the MNIST classification dataset.
endpoint_name: mnist-batch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
name: mnist-torch-dpl
description: A deployment using Torch to solve the MNIST classification dataset.
endpoint_name: mnist-batch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
endpoint_name: text-embedding-ada-qwerty
name: default
description: The default deployment for generating embeddings
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponentBatchDeployment.schema.json
name: uci-classifier-prepros-xgb
endpoint_name: uci-classifier-batch
type: pipeline
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponentBatchDeployment.schema.json
name: hello-batch-from-job
endpoint_name: hello-pipeline-batch
type: pipeline
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponentBatchDeployment.schema.json
name: hello-batch-dpl
endpoint_name: hello-pipeline-batch
type: pipeline
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponentBatchDeployment.schema.json
name: uci-classifier-train-onehot
description: A sample deployment that trains an XGBoost model for the UCI dataset using onehot encoding for variables.
endpoint_name: uci-classifier-train
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$schema: https://azuremlschemas.azureedge.net/latest/batchDeployment.schema.json
$schema: https://azuremlschemas.azureedge.net/latest/pipelineComponentBatchDeployment.schema.json
name: uci-classifier-train-xgb
description: A sample deployment that trains an XGBoost model for the UCI dataset.
endpoint_name: uci-classifier-train
Expand Down
Loading