Skip to content

Commit e4f0e76

Browse files
authored
Update how-to-image-processing-batch.md
1 parent 186e807 commit e4f0e76

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/machine-learning/how-to-image-processing-batch.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Batch Endpoints can be used for processing tabular data, but also any other file
2121

2222
## About this sample
2323

24-
The model we are going to work with was built using TensorFlow along with the RestNet architecture ([Identity Mappings in Deep Residual Networks](https://arxiv.org/abs/1603.05027)). A sample of this model can be downloaded from [here](https://azuremlexampledata.blob.core.windows.net/data/imagenet/model.zip). The model has the following constrains that are important to keep in mind for deployment:
24+
The model we are going to work with was built using TensorFlow along with the RestNet architecture ([Identity Mappings in Deep Residual Networks](https://arxiv.org/abs/1603.05027)). A sample of this model can be downloaded from [here](https://azuremlexampledata.blob.core.windows.net/data/imagenet/model.zip). The model has the following constrains that is important to keep in mind for deployment:
2525

2626
* It works with images of size 244x244 (tensors of `(224, 224, 3)`).
2727
* It requires inputs to be scaled to the range `[0,1]`.
@@ -109,7 +109,10 @@ Batch Endpoint can only deploy registered models so we need to register it. You
109109

110110
# [Azure CLI](#tab/cli)
111111

112-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="register_model" :::
112+
```azurecli
113+
MODEL_NAME='imagenet-classifier'
114+
az ml model create --name $MODEL_NAME --path "model"
115+
```
113116

114117
# [Python](#tab/sdk)
115118

0 commit comments

Comments
 (0)