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
@@ -177,28 +177,15 @@ An activity represents a long running operation. The following operations are ex
177
177
178
178
Activities can provide notifications through the SDK or the web UI so that you can easily monitor the progress of these operations.
179
179
180
-
### Images
180
+
### Environments
181
181
182
-
Images provide a way to reliably deploy a model, along with all components you need to use the model. An image contains the following items:
182
+
Azure ML Environments are used to specify the configuration (Docker / Python / Spark / etc.) used to create a reproducible environment for data preparation, model training and model serving. They are managed and versioned entities within your Azure Machine Learning workspace that enable reproducible, auditable, and portable machine learning workflows across different compute targets.
183
183
184
-
* A model.
185
-
* A scoring script or application. You use the script to pass input to the model and return the output of the model.
186
-
* The dependencies that are needed by the model or scoring script or application. For example, you might include a Conda environment file that lists Python package dependencies.
184
+
You can use an environment object on your local compute to develop your training script, reuse that same environment on Azure Machine Learning Compute for model training at scale, and even deploy your model with that same environment.
187
185
188
-
Azure Machine Learning can create two types of images:
186
+
Learn [how to create and manage a reusable ML environment](how-to-use-environments.md) for training and inference.
189
187
190
-
***FPGA image**: Used when you deploy to a field-programmable gate array in Azure.
191
-
***Docker image**: Used when you deploy to compute targets other than FPGA. Examples are Azure Container Instances and Azure Kubernetes Service.
192
188
193
-
Azure Machine Learning provides a base image, which is used by default. You can also provide your own custom images.
194
-
195
-
### Image registry
196
-
197
-
Images are cataloged in the **image registry** in your workspace. You can provide additional metadata tags when you create the image, so that you can query them to find your image later.
198
-
199
-
For an example of creating an image, see [Deploy an image classification model in Azure Container Instances](tutorial-deploy-models-with-aml.md).
200
-
201
-
For an example of deploying a model using a custom image, see [How to deploy a model using a custom Docker image](how-to-deploy-custom-docker-image.md).
0 commit comments