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-azure-machine-learning-architecture.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
@@ -103,7 +103,7 @@ A run configuration is a set of instructions that defines how a script should be
103
103
104
104
A run configuration can be persisted into a file inside the directory that contains your training script. Or it can be constructed as an in-memory object and used to submit a run.
105
105
106
-
For example run configurations, see [Select and use a compute target to train your model](how-to-set-up-training-targets.md).
106
+
For example run configurations, see [Use a compute target to train your model](how-to-set-up-training-targets.md).
Copy file name to clipboardExpand all lines: articles/machine-learning/concept-compute-instance.md
+3-14Lines changed: 3 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Compute instances make it easy to get started with Azure Machine Learning develo
20
20
21
21
Use a compute instance as your fully configured and managed development environment in the cloud for machine learning. They can also be used as a compute target for training and inferencing for development and testing purposes.
22
22
23
-
For production grade model training use an [Azure Machine Learning compute cluster](how-to-set-up-training-targets.md#amlcompute) with multi-node scaling capabilities. For production grade model deployment, use [Azure Kubernetes Service cluster](how-to-deploy-azure-kubernetes-service.md).
23
+
For production grade model training use an [Azure Machine Learning compute cluster](how-to-create-attach-compute-sdk.md#amlcompute) with multi-node scaling capabilities. For production grade model deployment, use [Azure Kubernetes Service cluster](how-to-deploy-azure-kubernetes-service.md).
24
24
25
25
## Why use a compute instance?
26
26
@@ -135,18 +135,7 @@ These actions can be controlled by RBAC:
135
135
136
136
### <aname="create"></a>Create a compute instance
137
137
138
-
In your workspace in Azure Machine Learning studio, create a new compute instance from either the **Compute** section or in the **Notebooks** section when you are ready to run one of your notebooks.
139
-
140
-
:::image type="content" source="media/concept-compute-instance/create-compute-instance.png" alt-text="Create a new compute instance":::
141
-
142
-
143
-
|Field |Description |
144
-
|---------|---------|
145
-
|Compute name | <li>Name is required and must be between 3 to 24 characters long.</li><li>Valid characters are upper and lower case letters, digits, and the **-** character.</li><li>Name must start with a letter</li><li>Name needs to be unique across all existing computes within an Azure region. You will see an alert if the name you choose is not unique</li><li>If **-** character is used, then it needs to be followed by at least one letter later in the name</li> |
146
-
|Virtual machine type | Choose CPU or GPU. This type cannot be changed after creation |
147
-
|Virtual machine size | Supported virtual machine sizes might be restricted in your region. Check the [availability list](https://azure.microsoft.com/global-infrastructure/services/?products=virtual-machines)|
148
-
|Enable/disable SSH access | SSH access is disabled by default. SSH access cannot be. changed after creation. Make sure to enable access if you plan to debug interactively with [VS Code Remote](how-to-set-up-vs-code-remote.md)|
149
-
|Advanced settings | Optional. Configure a virtual network. Specify the **Resource group**, **Virtual network**, and **Subnet** to create the compute instance inside an Azure Virtual Network (vnet). For more information, see these [network requirements](how-to-enable-virtual-network.md#compute-instance) for vnet . |
138
+
In your workspace in Azure Machine Learning studio, [create a new compute instance](how-to-create-attach-compute-studio.md#compute-instance) from either the **Compute** section or in the **Notebooks** section when you are ready to run one of your notebooks.
150
139
151
140
You can also create an instance
152
141
* Directly from the [integrated notebooks experience](tutorial-1st-experiment-sdk-setup.md#azure)
@@ -155,7 +144,7 @@ You can also create an instance
155
144
* With Azure Machine Learning SDK
156
145
* From the [CLI extension for Azure Machine Learning](reference-azure-machine-learning-cli.md#computeinstance)
157
146
158
-
The dedicated cores per region per VM family quota and total regional quota, which applies to compute instance creation. is unified and shared with Azure Machine Learning training compute cluster quota. Stopping the compute instance does not release quota to ensure you will be able to restart the compute instance.
147
+
The dedicated cores per region per VM family quota and total regional quota, which applies to compute instance creation, is unified and shared with Azure Machine Learning training compute cluster quota. Stopping the compute instance does not release quota to ensure you will be able to restart the compute instance.
Learn more about [setting up and using a compute target for model training](how-to-set-up-training-targets.md).
32
+
Learn more about [using a compute target for model training](how-to-set-up-training-targets.md).
33
33
34
34
## <aname="deploy"></a>Deployment targets
35
35
@@ -42,10 +42,10 @@ Learn [where and how to deploy your model to a compute target](how-to-deploy-and
42
42
<aname="amlcompute"></a>
43
43
## Azure Machine Learning compute (managed)
44
44
45
-
A managed compute resource is created and managed by Azure Machine Learning. This compute is optimized for machine learning workloads. Azure Machine Learning compute clusters and [compute instances](concept-compute-instance.md) are the only managed computes. Additional managed compute resources may be added in the future.
45
+
A managed compute resource is created and managed by Azure Machine Learning. This compute is optimized for machine learning workloads. Azure Machine Learning compute clusters and [compute instances](concept-compute-instance.md) are the only managed computes.
46
46
47
47
You can create Azure Machine Learning compute instances or compute clusters from:
@@ -64,7 +64,7 @@ When created these compute resources are automatically part of your workspace, u
64
64
65
65
66
66
> [!NOTE]
67
-
> When a compute cluster is idle, it autoscales to 0 nodes, so you don't pay when it's not in use. A compute *instance*, however, is always on and does not autoscale. You should [stop the compute instance](tutorial-1st-experiment-sdk-train.md#stop-the-compute-instance) when you are not using it to avoid extra cost.
67
+
> When a compute cluster is idle, it autoscales to 0 nodes, so you don't pay when it's not in use. A compute *instance*, however, is always on and does not autoscale. You should [stop the compute instance](tutorial-1st-experiment-sdk-train.md#stop-the-compute-instance) when you are not using it to avoid extra cost.
68
68
69
69
### Supported VM series and sizes
70
70
@@ -103,5 +103,5 @@ An unmanaged compute target is *not* managed by Azure Machine Learning. You crea
103
103
## Next steps
104
104
105
105
Learn how to:
106
-
*[Set up a compute target to train your model](how-to-set-up-training-targets.md)
106
+
*[Use a compute target to train your model](how-to-set-up-training-targets.md)
107
107
*[Deploy your model to a compute target](how-to-deploy-and-where.md)
Copy file name to clipboardExpand all lines: articles/machine-learning/concept-distributed-training.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
@@ -45,7 +45,7 @@ In model parallelism, worker nodes only need to synchronize the shared parameter
45
45
46
46
## Next steps
47
47
48
-
* Learn how to [set up training environments](how-to-set-up-training-targets.md) with the Python SDK.
48
+
* Learn how to [use compute targets for model training](how-to-set-up-training-targets.md) with the Python SDK.
49
49
* For a technical example, see the [reference architecture scenario](https://docs.microsoft.com/azure/architecture/reference-architectures/ai/training-deep-learning).
50
50
*[Train ML models with TensorFlow](how-to-train-tensorflow.md).
51
51
*[Train ML models with PyTorch](how-to-train-pytorch.md).
Copy file name to clipboardExpand all lines: articles/machine-learning/concept-plan-manage-cost.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ With constantly changing data, you need fast and streamlined model training and
64
64
65
65
Azure Machine Learning users can use the managed Azure Machine Learning compute cluster, also called AmlCompute. AmlCompute supports a variety of GPU and CPU options. The AmlCompute is internally hosted on behalf of your subscription by Azure Machine Learning. It provides the same enterprise grade security, compliance and governance at Azure IaaS cloud scale.
66
66
67
-
Because these compute pools are inside of Azure's IaaS infrastructure, you can deploy, scale, and manage your training with the same security and compliance requirements as the rest of your infrastructure. These deployments occur in your subscription and obey your governance rules. Learn more about [Azure Machine Learning Compute](how-to-set-up-training-targets.md#amlcompute).
67
+
Because these compute pools are inside of Azure's IaaS infrastructure, you can deploy, scale, and manage your training with the same security and compliance requirements as the rest of your infrastructure. These deployments occur in your subscription and obey your governance rules. Learn more about [Azure Machine Learning compute](how-to-create-attach-compute-sdk.md#amlcompute).
68
68
69
69
## Configure training clusters for autoscaling
70
70
@@ -122,4 +122,4 @@ Azure Machine Learning Compute supports reserved instances inherently. If you pu
122
122
Learn more about:
123
123
*[Manage and increase resource quotas](how-to-manage-quotas.md)
124
124
*[Managing costs with cost analysis](../cost-management-billing/costs/quick-acm-cost-analysis.md).
*Create Azure Machine Learning compute with [SDK](how-to-create-attach-compute-sdk.md#amlcompute) or in [studio](how-to-create-attach-compute-studio.md#amlcompute).
Copy file name to clipboardExpand all lines: articles/machine-learning/data-science-virtual-machine/dsvm-pools.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
@@ -17,7 +17,7 @@ ms.date: 12/10/2018
17
17
18
18
In this article, you'll learn how to create a shared pool of Data Science Virtual Machines (DSVMs) for a team. The benefits of using a shared pool include better resource utilization, easier sharing and collaboration, and more effective management of DSVM resources.
19
19
20
-
You can use many methods and technologies to create a pool of DSVMs. This article focuses on pools for interactive virtual machines (VMs). An alternative managed compute infrastructure is Azure Machine Learning Compute. For more information, see [Set up compute targets](../how-to-set-up-training-targets.md#amlcompute).
20
+
You can use many methods and technologies to create a pool of DSVMs. This article focuses on pools for interactive virtual machines (VMs). An alternative managed compute infrastructure is Azure Machine Learning Compute. For more information, see [Create compute targets with Python SDK](../how-to-create-attach-compute-sdk.md).
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-auto-train-forecast.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,6 @@ To enable DNN for an AutoML experiment created in the Azure Machine Learning stu
252
252
253
253
Automated ML provides users with both native time-series and deep learning models as part of the recommendation system.
254
254
255
-
256
255
Models| Description | Benefits
257
256
----|----|---
258
257
Prophet (Preview)|Prophet works best with time series that have strong seasonal effects and several seasons of historical data. To leverage this model, install it locally using `pip install fbprophet`. | Accurate & fast, robust to outliers, missing data, and dramatic changes in your time series.
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-configure-environment.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ The following table shows each development environment covered in this article,
22
22
23
23
| Environment | Pros | Cons |
24
24
| --- | --- | --- |
25
-
|[Cloud-based Azure Machine Learning compute instance (preview)](#compute-instance)| Easiest way to get started. The entire SDK is already installed in your workspace VM, and notebook tutorials are pre-cloned and ready to run. | Lack of control over your development environment and dependencies. Additional cost incurred for Linux VM (VM can be stopped when not in use to avoid charges). See [pricing details](https://azure.microsoft.com/pricing/details/virtual-machines/linux/). |
25
+
|[Cloud-based Azure Machine Learning compute instance](#compute-instance)| Easiest way to get started. The entire SDK is already installed in your workspace VM, and notebook tutorials are pre-cloned and ready to run. | Lack of control over your development environment and dependencies. Additional cost incurred for Linux VM (VM can be stopped when not in use to avoid charges). See [pricing details](https://azure.microsoft.com/pricing/details/virtual-machines/linux/). |
26
26
|[Local environment](#local)| Full control of your development environment and dependencies. Run with any build tool, environment, or IDE of your choice. | Takes longer to get started. Necessary SDK packages must be installed, and an environment must also be installed if you don't already have one. |
27
27
|[Azure Databricks](#aml-databricks)| Ideal for running large-scale intensive machine learning workflows on the scalable Apache Spark platform. | Overkill for experimental machine learning, or smaller-scale experiments and workflows. Additional cost incurred for Azure Databricks. See [pricing details](https://azure.microsoft.com/pricing/details/databricks/). |
28
28
|[The Data Science Virtual Machine (DSVM)](#dsvm)| Similar to the cloud-based compute instance (Python and the SDK are pre-installed), but with additional popular data science and machine learning tools pre-installed. Easy to scale and combine with other custom tools and workflows. | A slower getting started experience compared to the cloud-based compute instance. |
@@ -50,7 +50,7 @@ To install the SDK environment for your [local computer](#local), [Jupyter Noteb
50
50
51
51
## <aid="compute-instance"></a>Your own cloud-based compute instance
52
52
53
-
The Azure Machine Learning [compute instance (preview)](concept-compute-instance.md) is a secure, cloud-based Azure workstation that provides data scientists with a Jupyter notebook server, JupyterLab, and a fully prepared ML environment.
53
+
The Azure Machine Learning [compute instance](concept-compute-instance.md) is a secure, cloud-based Azure workstation that provides data scientists with a Jupyter notebook server, JupyterLab, and a fully prepared ML environment.
54
54
55
55
There is nothing to install or configure for a compute instance. Create one anytime from within your Azure Machine Learning workspace. Provide just a name and specify an Azure VM type. Try it now with this [Tutorial: Setup environment and workspace](tutorial-1st-experiment-sdk-setup.md).
56
56
@@ -151,7 +151,7 @@ When you're using a local computer (which might also be a remote virtual machine
151
151
152
152
This example creates an environment using python 3.7.7, but any specific subversions can be chosen. SDK compatibility may not be guaranteed with certain major versions (3.5+ is recommended), and it's recommended to try a different version/subversion in your Anaconda environment if you run into errors. It will take several minutes to create the environment while components and packages are downloaded.
153
153
154
-
1. Run the following commands in your new environment to enable environment-specific IPython kernels. This will ensure expected kernel and package import behavior when working with Jupyter Notebooks within Anaconda environments:
154
+
1. Run the following commands in your new environment to enable environment-specific I Python kernels. This will ensure expected kernel and package import behavior when working with Jupyter Notebooks within Anaconda environments:
155
155
156
156
```bash
157
157
conda install notebook ipykernel
@@ -301,10 +301,10 @@ Once the cluster is running, [create a library](https://docs.databricks.com/user
0 commit comments