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/reference-machine-learning-cloud-parity.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
@@ -23,7 +23,7 @@ In the list of global Azure regions, there are several regions that serve specif
23
23
* Azure Government regions **US-Arizona** and **US-Virginia**.
24
24
* Azure China 21Vianet region **China-East-2**.
25
25
26
-
Azure Machine Learning is still in devlopment in Airgap Regions.
26
+
Azure Machine Learning is still in development in Airgap Regions.
27
27
28
28
The information in the rest of this document provides information on what features of Azure Machine Learning are available in these regions, along with region-specific information on using these features.
29
29
## Azure Government
@@ -92,7 +92,7 @@ The information in the rest of this document provides information on what featur
92
92
| Interpretability SDK | GA | YES | YES |
93
93
|**Training**||||
94
94
|[Experimentation log streaming](how-to-track-monitor-analyze-runs.md)| GA | YES | YES |
95
-
|[Reinforcement Learning](how-to-use-reinforcement-learning.md)| Public Preview | NO | NO |
95
+
|[Reinforcement Learning](./v1/how-to-use-reinforcement-learning.md)| Public Preview | NO | NO |
96
96
|[Experimentation UI](how-to-track-monitor-analyze-runs.md)| Public Preview | YES | YES |
97
97
|[.NET integration ML.NET 1.0](/dotnet/machine-learning/tutorials/object-detection-model-builder)| GA | YES | YES |
> Azure Machine Learning reinforcement learning via the [`azureml.contrib.train.rl`](/python/api/azureml-contrib-reinforcementlearning/azureml.contrib.train.rl) package will no longer be supported after June 2022. We recommend customers use the [Ray on Azure Machine Learning library](https://github.com/microsoft/ray-on-aml) for reinforcement learning experiments with Azure Machine Learning. For an example, see the notebook [Reinforcement Learning in Azure Machine Learning - Pong problem](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/reinforcement-learning/atari-on-distributed-compute/pong_rllib.ipynb).
@@ -37,7 +37,7 @@ Run this code in either of these environments. We recommend you try Azure Machin
37
37
38
38
- Azure Machine Learning compute instance
39
39
40
-
- Learn how to clone sample notebooks in [Tutorial: Train and deploy a model](tutorial-train-deploy-notebook.md).
40
+
- Learn how to clone sample notebooks in [Tutorial: Train and deploy a model](../tutorial-train-deploy-notebook.md).
41
41
- Clone the **how-to-use-azureml** folder instead of **tutorials**
42
42
- Run the virtual network setup notebook located at `/how-to-use-azureml/reinforcement-learning/setup/devenv_setup.ipynb` to open network ports used for distributed reinforcement learning.
43
43
- Run the sample notebook `/how-to-use-azureml/reinforcement-learning/atari-on-distributed-compute/pong_rllib.ipynb`
@@ -46,7 +46,7 @@ Run this code in either of these environments. We recommend you try Azure Machin
46
46
47
47
- Install the [Azure Machine Learning SDK](/python/api/overview/azure/ml/install).
- Create a [workspace configuration file](how-to-configure-environment.md#workspace).
49
+
- Create a [workspace configuration file](../how-to-configure-environment.md#workspace).
50
50
- Run the virtual network to open network ports used for distributed reinforcement learning.
51
51
52
52
@@ -94,7 +94,7 @@ from azureml.contrib.train.rl import WorkerConfiguration
94
94
95
95
### Initialize a workspace
96
96
97
-
Initialize a [workspace](concept-workspace.md) object from the `config.json` file created in the [prerequisites section](#prerequisites). If you are executing this code in an Azure Machine Learning Compute Instance, the configuration file has already been created for you.
97
+
Initialize a [workspace](../concept-workspace.md) object from the `config.json` file created in the [prerequisites section](#prerequisites). If you are executing this code in an Azure Machine Learning Compute Instance, the configuration file has already been created for you.
98
98
99
99
```Python
100
100
ws = Workspace.from_config()
@@ -128,7 +128,7 @@ This example uses separate compute targets for the Ray head and workers nodes. T
128
128
129
129
You can use a GPU-equipped head cluster to improve deep learning performance. The head node trains the neural network that the agent uses to make decisions. The head node also collects data points from the worker nodes to train the neural network.
130
130
131
-
The head compute uses a single [`STANDARD_NC6` virtual machine](../virtual-machines/nc-series.md) (VM). It has 6 virtual CPUs to distribute work across.
131
+
The head compute uses a single [`STANDARD_NC6` virtual machine](../../virtual-machines/nc-series.md) (VM). It has 6 virtual CPUs to distribute work across.
This example uses four [`STANDARD_D2_V2` VMs](../virtual-machines/nc-series.md) for the worker compute target. Each worker node has 2 available CPUs for a total of 8 available CPUs.
173
+
This example uses four [`STANDARD_D2_V2` VMs](../../virtual-machines/nc-series.md) for the worker compute target. Each worker node has 2 available CPUs for a total of 8 available CPUs.
174
174
175
175
GPUs aren't necessary for the worker nodes since they aren't performing deep learning. The workers run the game simulations and collect data.
176
176
@@ -245,7 +245,7 @@ The entry script `pong_rllib.py` accepts a list of parameters that defines how t
245
245
246
246
Specifying the correct `num_workers` makes the most out of your parallelization efforts. Set the number of workers to the same as the number of available CPUs. For this example, you can use the following calculation:
247
247
248
-
The head node is a [Standard_NC6](../virtual-machines/nc-series.md) with 6 vCPUs. The worker cluster is 4 [Standard_D2_V2 VMs](../cloud-services/cloud-services-sizes-specs.md#dv2-series) with 2 CPUs each, for a total of 8 CPUs. However, you must subtract 1 CPU from the worker count since 1 must be dedicated to the head node role.
248
+
The head node is a [Standard_NC6](../../virtual-machines/nc-series.md) with 6 vCPUs. The worker cluster is 4 [Standard_D2_V2 VMs](../../cloud-services/cloud-services-sizes-specs.md#dv2-series) with 2 CPUs each, for a total of 8 CPUs. However, you must subtract 1 CPU from the worker count since 1 must be dedicated to the head node role.
249
249
250
250
6 CPUs + 8 CPUs - 1 head CPU = 13 simultaneous workers. Azure Machine Learning uses head and worker clusters to distinguish compute resources. However, Ray does not distinguish between head and workers, and all CPUs are available as worker threads.
0 commit comments