You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/batch-inference/how-to-use-batch-endpoint.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -652,9 +652,11 @@ The scoring results in Storage Explorer are similar to the following sample page
652
652
653
653
Once you have a batch endpoint with a deployment, you can continue to refine your model and add new deployments. Batch endpoints will continue serving the default deployment while you develop and deploy new models under the same endpoint. Deployments can't affect one to another.
654
654
655
+
In this example, you will learn how to add a second deployment __that solves the same MNIST problem but using a model built with Keras and TensorFlow__.
656
+
655
657
### Adding a second deployment
656
658
657
-
1. Create an environment where your batch deployment will run. Include in the environment any dependency your code requires for running. You will also need to add the library `azureml-core` as it is required for batch deployments to work.
659
+
1. Create an environment where your batch deployment will run. Include in the environment any dependency your code requires for running. You will also need to add the library `azureml-core` as it is required for batch deployments to work. The following environment definition has the required libraries to run a model with TensorFlow.
658
660
659
661
# [Azure ML CLI](#tab/cli)
660
662
@@ -678,9 +680,9 @@ Once you have a batch endpoint with a deployment, you can continue to refine you
678
680
1. Enter the name of the environment, in this case `keras-batch-env`.
679
681
1. On __Select environment type__ select __Use existing docker image with conda__.
680
682
1. On __Container registry image path__, enter `mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04`.
681
-
1. On __Customize__ section copy the content of the file`./mnist/environment/conda.yml` included in the repository into the portal. The conda file looks as follows:
683
+
1. On __Customize__ section copy the content of the file`./mnist-keras/environment/conda.yml` included in the repository into the portal. The conda file looks as follows:
0 commit comments