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/concept-workspace.md
+22-38Lines changed: 22 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.custom: event-tier1-build-2022
9
9
ms.topic: conceptual
10
10
ms.author: sgilley
11
11
author: sdgilley
12
-
ms.date: 01/04/2022
12
+
ms.date: 08/26/2022
13
13
#Customer intent: As a data scientist, I want to understand the purpose of a workspace for Azure Machine Learning.
14
14
---
15
15
@@ -18,7 +18,7 @@ ms.date: 01/04/2022
18
18
19
19
The workspace is the top-level resource for Azure Machine Learning, providing a centralized place to work with all the artifacts you create when you use Azure Machine Learning. The workspace keeps a history of all 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.
20
20
21
-
Once you have a model you like, you register it with the workspace. You then 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.
21
+
Once you have a model you like, you register it with the workspace. You then use the registered model and scoring scripts to deploy to an [online endpoint](concept-endpoints.md) as a REST-based HTTP endpoint.
22
22
23
23
## Taxonomy
24
24
@@ -31,70 +31,65 @@ The diagram shows the following components of a workspace:
31
31
+ A workspace can contain [Azure Machine Learning compute instances](concept-compute-instance.md), cloud resources configured with the Python environment necessary to run Azure Machine Learning.
32
32
33
33
+[User roles](how-to-assign-roles.md) enable you to share your workspace with other users, teams, or projects.
34
-
+[Compute targets](v1/concept-azure-machine-learning-architecture.md#compute-targets) are used to run your experiments.
35
-
+ When you create the workspace, [associated resources](#resources) are also created for you.
36
-
+[Experiments](v1/concept-azure-machine-learning-architecture.md#experiments) are training runs you use to build your models.
37
-
+[Pipelines](v1/concept-azure-machine-learning-architecture.md#ml-pipelines) are reusable workflows for training and retraining your model.
38
-
+[Datasets](v1/concept-azure-machine-learning-architecture.md#datasets-and-datastores) aid in management of the data you use for model training and pipeline creation.
34
+
+[Compute targets](concept-compute-target.md) are used to run your experiments.
35
+
+ When you create the workspace, [associated resources](#associated-resources) are also created for you.
36
+
+Jobs are training runs you use to build your models. You can organize your jobs into Experiments.
37
+
+[Pipelines](concept-ml-pipelines.md) are reusable workflows for training and retraining your model.
38
+
+[Data assets](concept-data.md) aid in management of the data you use for model training and pipeline creation.
39
39
+ Once you have a model you want to deploy, you create a registered model.
40
-
+ Use the registered model and a scoring script to create a [deployment endpoint](v1/concept-azure-machine-learning-architecture.md#endpoints).
40
+
+ Use the registered model and a scoring script to create an [online endpoint](concept-endpoints.md).
41
41
42
42
## Tools for workspace interaction
43
43
44
44
You can interact with your workspace in the following ways:
45
45
46
-
> [!IMPORTANT]
47
-
> Tools marked (preview) below are currently in public preview.
48
-
> The preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
49
-
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
50
-
51
46
+ On the web:
52
47
+[Azure Machine Learning studio ](https://ml.azure.com)
| Create and manage compute resources |**✓**|**✓**|**✓**|**✓**|**✓**|
74
+
| Create a compute instance ||**✓**|**✓**|**✓**|**✓**|
81
75
82
76
> [!WARNING]
83
77
> Moving your Azure Machine Learning workspace to a different subscription, or moving the owning subscription to a new tenant, is not supported. Doing so may cause errors.
84
78
85
-
## <aname='create-workspace'></a> Create a workspace
79
+
## Create a workspace
86
80
87
81
There are multiple ways to create a workspace:
88
82
89
-
* Use the [Azure portal](quickstart-create-resources.md) for a point-and-click interface to walk you through each step.
90
-
* Use the [Azure Machine Learning SDK for Python](how-to-manage-workspace.md?tabs=python#create-a-workspace) to create a workspace on the fly from Python scripts or Jupyter notebooks
83
+
* Use [Azure Machine Learning studio](quickstart-create-resources.md) to quickly create a workspace with default settings.
84
+
* Use the [Azure portal](how-to-manage-workspace.md?tabs=azure-portal#create-a-workspace) for a point-and-click interface with more options.
85
+
* Use the [Azure Machine Learning SDK for Python](how-to-manage-workspace.md?tabs=python#create-a-workspace) to create a workspace on the fly from Python scripts or Jupyter notebooks.
91
86
* Use an [Azure Resource Manager template](how-to-create-workspace-template.md) or the [Azure Machine Learning CLI](how-to-configure-cli.md) when you need to automate or customize the creation with corporate security standards.
92
87
* If you work in Visual Studio Code, use the [VS Code extension](how-to-manage-resources-vscode.md#create-a-workspace).
93
88
94
89
> [!NOTE]
95
90
> The workspace name is case-insensitive.
96
91
97
-
## <aname="sub-resources"></a> Sub resources
92
+
## Sub resources
98
93
99
94
These sub resources are the main resources that are made in the AzureML workspace.
100
95
@@ -103,7 +98,7 @@ These sub resources are the main resources that are made in the AzureML workspac
103
98
* Virtual Network: these help Azure resources communicate with one another, the internet, and other on-premises networks.
104
99
* Bandwidth: encapsulates all outbound data transfers across regions.
105
100
106
-
## <aname="resources"></a> Associated resources
101
+
## Associated resources
107
102
108
103
When you create a new workspace, it automatically creates several Azure resources that are used by the workspace:
109
104
@@ -135,17 +130,6 @@ When you create a new workspace, it automatically creates several Azure resource
135
130
> [!NOTE]
136
131
> You can instead use existing Azure resource instances when you create the workspace with the [Python SDK](how-to-manage-workspace.md?tabs=python#create-a-workspace) or the Azure Machine Learning CLI [using an ARM template](how-to-create-workspace-template.md).
137
132
138
-
<aname="wheres-enterprise"></a>
139
-
140
-
## What happened to Enterprise edition
141
-
142
-
As of September 2020, all capabilities that were available in Enterprise edition workspaces are now also available in Basic edition workspaces.
143
-
New Enterprise workspaces can no longer be created. Any SDK, CLI, or Azure Resource Manager calls that use the `sku` parameter will continue to work but a Basic workspace will be provisioned.
144
-
145
-
Beginning December 21st, all Enterprise Edition workspaces will be automatically set to Basic Edition, which has the same capabilities. No downtime will occur during this process. On January 1, 2021, Enterprise Edition will be formally retired.
146
-
147
-
In either editions, customers are responsible for the costs of Azure resources consumed and will not need to pay any additional charges for Azure Machine Learning. Please refer to the [Azure Machine Learning pricing page](https://azure.microsoft.com/pricing/details/machine-learning/) for more details.
148
-
149
133
## Next steps
150
134
151
135
To learn more about planning a workspace for your organization's requirements, see [Organize and set up Azure Machine Learning](/azure/cloud-adoption-framework/ready/azure-best-practices/ai-machine-learning-resource-organization).
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-manage-workspace-cli.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ For more information on working with resource groups, see [az group](/cli/azure/
111
111
112
112
## Create a workspace
113
113
114
-
When you deploy an Azure Machine Learning workspace, various other services are [required as dependent associated resources](./concept-workspace.md#resources). When you use the CLI to create the workspace, the CLI can either create new associated resources on your behalf or you could attach existing resources.
114
+
When you deploy an Azure Machine Learning workspace, various other services are [required as dependent associated resources](./concept-workspace.md#associated-resources). When you use the CLI to create the workspace, the CLI can either create new associated resources on your behalf or you could attach existing resources.
115
115
116
116
> [!IMPORTANT]
117
117
> When attaching your own storage account, make sure that it meets the following criteria:
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-manage-workspace-terraform.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Create the Terraform configuration file that declares the Azure provider:
49
49
50
50
## Deploy a workspace
51
51
52
-
The following Terraform configurations can be used to create an Azure Machine Learning workspace. When you create an Azure Machine Learning workspace, various other services are required as dependencies. The template also specifies these [associated resources to the workspace](./concept-workspace.md#resources). Depending on your needs, you can choose to use the template that creates resources with either public or private network connectivity.
52
+
The following Terraform configurations can be used to create an Azure Machine Learning workspace. When you create an Azure Machine Learning workspace, various other services are required as dependencies. The template also specifies these [associated resources to the workspace](./concept-workspace.md#associated-resources). Depending on your needs, you can choose to use the template that creates resources with either public or private network connectivity.
Workspace name |Enter a unique name that identifies your workspace. Names must be unique across the resource group. Use a name that's easy to recall and to differentiate from workspaces created by others. The workspace name is case-insensitive.
40
+
Subscription |Select the Azure subscription that you want to use.
41
+
Resource group | Use an existing resource group in your subscription or enter a name to create a new resource group. A resource group holds related resources for an Azure solution. You need *contributor* or *owner* role to use an existing resource group. For more information about access, see [Manage access to an Azure Machine Learning workspace](how-to-assign-roles.md).
42
+
Region | Select the Azure region closest to your users and the data resources to create your workspace.
43
+
1. Select **Create** to create the workspace
35
44
36
-
## <aname="instance"></a> Create compute instance
45
+
## Create compute instance
37
46
38
47
You could install Azure Machine Learning on your own computer. But in this quickstart, you'll create an online compute resource that has a development environment already installed and ready to go. You'll use this online machine, a *compute instance*, for your development environment to write and run code in Python scripts and Jupyter notebooks.
39
48
40
49
Create a *compute instance* to use this development environment for the rest of the tutorials and quickstarts.
41
50
42
-
1. If you didn't select **Go to workspace** in the previous section, sign in to [Azure Machine Learning studio](https://ml.azure.com) now, and select your workspace.
51
+
1. If you didn't just create a workspace in the previous section, sign in to [Azure Machine Learning studio](https://ml.azure.com) now, and select your workspace.
43
52
1. On the left side, select **Compute**.
44
53
1. Select **+New** to create a new compute instance.
45
54
1. Supply a name, Keep all the defaults on the first page.
46
55
1. Select **Create**.
47
56
48
57
In about two minutes, you'll see the **State** of the compute instance change from *Creating* to *Running*. It's now ready to go.
49
58
50
-
## <aname="cluster"></a> Create compute clusters
59
+
## Create compute clusters
51
60
52
61
Next you'll create a compute cluster. Clusters allow you to distribute a training or batch inference process across a cluster of CPU or GPU compute nodes in the cloud.
53
62
@@ -67,7 +76,7 @@ In less than a minute, the **State** of the cluster will change from *Creating*
67
76
> [!NOTE]
68
77
> When the cluster is created, it will have 0 nodes provisioned. The cluster *does not* incur costs until you submit a job. This cluster will scale down when it has been idle for 2,400 seconds (40 minutes). This will give you time to use it in a few tutorials if you wish without waiting for it to scale back up.
69
78
70
-
## <aname="studio"></a> Quick tour of the studio
79
+
## Quick tour of the studio
71
80
72
81
The studio is your web portal for Azure Machine Learning. This portal combines no-code and code-first experiences for an inclusive data science platform.
73
82
@@ -87,7 +96,7 @@ Review the parts of the studio on the left-hand navigation bar:
Copy file name to clipboardExpand all lines: articles/machine-learning/v1/how-to-manage-workspace-cli.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ For more information on working with resource groups, see [az group](/cli/azure/
95
95
96
96
## Create a workspace
97
97
98
-
When you deploy an Azure Machine Learning workspace, various other services are [required as dependent associated resources](../concept-workspace.md#resources). When you use the CLI to create the workspace, the CLI can either create new associated resources on your behalf or you could attach existing resources.
98
+
When you deploy an Azure Machine Learning workspace, various other services are [required as dependent associated resources](../concept-workspace.md#associated-resources). When you use the CLI to create the workspace, the CLI can either create new associated resources on your behalf or you could attach existing resources.
99
99
100
100
> [!IMPORTANT]
101
101
> When attaching your own storage account, make sure that it meets the following criteria:
0 commit comments