forked from MicrosoftDocs/azure-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request MicrosoftDocs#76108 from sdgilley/sdg-master
workspace concept article
- Loading branch information
Showing
14 changed files
with
219 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
--- | ||
title: 'What is a workspace' | ||
titleSuffix: Azure Machine Learning service | ||
description: Learn what a workspace is and why you need one for Azure Machine Learning service. | ||
services: machine-learning | ||
ms.service: machine-learning | ||
ms.subservice: core | ||
ms.topic: conceptual | ||
ms.author: sgilley | ||
author: sdgilley | ||
ms.date: 05/15/2019 | ||
# As a data scientist, I want to understand the purpose of a workspace for Azure Machine Learning service. | ||
--- | ||
|
||
|
||
# What is an Azure Machine Learning workspace? | ||
|
||
The workspace is the top-level resource for Azure Machine Learning service. It provides a centralized place to work with all the artifacts you create when you use Azure Machine Learning service. | ||
|
||
The workspace keeps a history of the training runs, including logs, metrics, output, and a snapshot of your scripts. You use this information to determine which training run produces the best model. | ||
|
||
Once you have a model you like, you register it with the workspace. You use the registered model and scoring scripts to deploy to Azure Container Instances, Azure Kubernetes Service, or to a field-programmable gate array (FPGA) as a REST-based HTTP endpoint. You can also deploy the model to an Azure IoT Edge device as a module. | ||
|
||
## Taxonomy | ||
|
||
A taxonomy of the workspace is illustrated in the following diagram: | ||
|
||
[![Workspace taxonomy](./media/concept-azure-machine-learning-architecture/azure-machine-learning-taxonomy.png)](./media/concept-azure-machine-learning-architecture/azure-machine-learning-taxonomy.png#lightbox) | ||
|
||
The diagram shows the following components of a workspace: | ||
|
||
+ A workspace can contain [Notebook VMs](quickstart-run-cloud-notebook.md), cloud resources configured with the Python environment necessary to run Azure Machine Learning. | ||
+ [User roles](how-to-assign-roles.md) enable you to share your workspace with other users, teams or projects. | ||
+ [Compute targets](concept-azure-machine-learning-architecture.md#compute-target) are used to run your experiments. | ||
+ When you create the workspace, [associated resources](#resources) are also created for you. | ||
+ [Experiments](concept-azure-machine-learning-architecture.md#experiment) are training runs you use to build your models. You can create and run experiments with | ||
+ The [Azure Machine Learning SDK for Python](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py). | ||
+ The [automated machine learning experiments (preview)](how-to-create-portal-experiments.md) section in the Azure portal. | ||
+ The [visual interface (preview)](ui-concept-visual-interface.md). | ||
+ [Pipelines](concept-azure-machine-learning-architecture.md#pipeline) are reusable workflows for training and retraining your model. | ||
+ [Datasets](concept-azure-machine-learning-architecture.md#dataset) aid in management of the data you use for model training and pipeline creation. | ||
+ Once you have a model you want to deploy, you create a [registered model](concept-azure-machine-learning-architecture.md#model-registry). | ||
+ Use the registered model and a scoring script to create a [deployment](concept-azure-machine-learning-architecture.md#image-registry). | ||
|
||
## Tools for workspace interaction | ||
|
||
You can interact with your workspace in the following ways: | ||
|
||
+ On the web: | ||
+ The [Azure portal](https://azure.portal.com) | ||
+ The [visual interface (preview)](ui-concept-visual-interface.md) | ||
+ In Python using Azure Machine Learning [SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py) | ||
+ On the command line using the Azure Machine Learning [CLI extension](https://docs.microsoft.com/azure/machine-learning/service/reference-azure-machine-learning-cli) | ||
|
||
## Machine learning with a workspace | ||
|
||
Machine learning tasks read and/or write artifacts to your workspace. | ||
|
||
+ Run an experiment to train a model - writes experiment run results to the workspace. | ||
+ Use automated ML to train a model - writes training results to the workspace. | ||
+ Register a model in the workspace. | ||
+ Deploy a model - uses the registered model to create a deployment. | ||
+ Create and run reusable workflows. | ||
+ View machine learning artifacts such as experiments, pipelines, models, deployments. | ||
+ Track and monitor models. | ||
|
||
## Workspace management | ||
|
||
You can also perform the following workspace management tasks: | ||
|
||
| Workspace management task | Portal | SDK | CLI | | ||
|---------------------------|------------------|------------|------------| | ||
| Create a workspace | **✓** | **✓** | **✓** | | ||
| Create and manage compute resources | **✓** | **✓** | **✓** | | ||
| Manage workspace access | **✓** | | **✓** | | ||
| Create a notebook VM | **✓** | | | | ||
|
||
Get started with the service by [creating a workspace](setup-create-workspace.md). | ||
|
||
## <a name="resources"></a> Associated resources | ||
|
||
When you create a new workspace, it automatically creates several Azure resources that are used by the workspace: | ||
|
||
+ [Azure Container Registry](https://azure.microsoft.com/services/container-registry/): Registers docker containers that you use during training and when you deploy a model. | ||
+ [Azure Storage account](https://azure.microsoft.com/services/storage/): Is used as the default datastore for the workspace. | ||
+ [Azure Application Insights](https://azure.microsoft.com/services/application-insights/): Stores monitoring information about your models. | ||
+ [Azure Key Vault](https://azure.microsoft.com/services/key-vault/): Stores secrets that are used by compute targets and other sensitive information that's needed by the workspace. | ||
|
||
> [!NOTE] | ||
> In addition to creating new versions, you can also use existing Azure services. | ||
## Next steps | ||
|
||
To get started with Azure Machine Learning service, see: | ||
|
||
+ [Azure Machine Learning service overview](overview-what-is-azure-ml.md) | ||
+ [Create a workspace](setup-create-workspace.md) | ||
+ [Manage a workspace](how-to-manage-workspace.md) | ||
+ [Tutorial: Train a model](tutorial-train-models-with-aml.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+15.6 KB
articles/machine-learning/service/media/ui-concept-visual-interface/overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+56.3 KB
articles/machine-learning/service/media/ui-concept-visual-interface/properties.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.