Skip to content

Commit 4ceec66

Browse files
authored
Merge pull request #89150 from jpe316/patch-8
Update concept-azure-machine-learning-architecture.md
2 parents 865ee4d + 76783e4 commit 4ceec66

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

articles/machine-learning/service/concept-azure-machine-learning-architecture.md

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Use these tools for Azure Machine Learning:
6060
+ <a href="#compute-targets">Compute targets</a>
6161
+ <a href="#training-scripts">Training script</a>
6262
+ <a href="#runs">Run</a>
63+
+ <a href="#environments">Environments</a>
6364
+ <a href="#github-tracking-and-integration">Git tracking</a>
6465
+ <a href="#snapshots">Snapshot</a>
6566
+ <a href="#activities">Activity</a>
66-
+ <a href="#images">Image</a>
6767
+ <a href="#deployment">Deployment</a>
6868
+ <a href="#web-service-deployments">Web services</a>
6969
+ <a href="#iot-module-deployments">IoT modules</a>
@@ -177,28 +177,15 @@ An activity represents a long running operation. The following operations are ex
177177

178178
Activities can provide notifications through the SDK or the web UI so that you can easily monitor the progress of these operations.
179179

180-
### Images
180+
### Environments
181181

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.
183183

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.
187185

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.
189187

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.
192188

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).
202189

203190
### Deployment
204191

0 commit comments

Comments
 (0)