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/how-to-use-batch-endpoint.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -269,8 +269,17 @@ A deployment is a set of resources required for hosting the model that does the
269
269
* The environment in which the model runs.
270
270
* The pre-created compute and resource settings.
271
271
272
-
1. Create an environment where your batch deployment will run. Include in the environment any dependency your code requires for running. In this case, the dependencies have been captured in a `conda.yml`.
273
-
272
+
1. Create an environment where your batch deployment will run. Such environment needs to include the packages `azureml-core` and `azureml-dataset-runtime[fuse]` which are required by batch endpoints plus any dependency your code requires for running. In this case, the dependencies have been captured in a `conda.yml`:
> The packages `azureml-core` and `azureml-dataset-runtime[fuse]` are required by batch deployments and should be included in the environment dependencies.
280
+
281
+
Indicate the environment as follows:
282
+
274
283
# [Azure CLI](#tab/azure-cli)
275
284
276
285
The environment definition will be included in the deployment definition itself as an anonymous environment. You will see in the following lines in the deployment:
@@ -303,19 +312,9 @@ A deployment is a set of resources required for hosting the model that does the
> Curated environments are not supported in batch deployments. You will need to indicate your own environment. You can always use the base image of a curated environment as yours to simplify the process.
314
317
315
-
> [!IMPORTANT]
316
-
> The packages `azureml-core` and `azureml-dataset-runtime[fuse]` are required by batch deployments and should be included in the environment dependencies.
0 commit comments