Skip to content

Commit 99e689e

Browse files
authored
acrolinx
1 parent bd972f9 commit 99e689e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/v1/how-to-manage-workspace.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You can create a workspace [directly in Azure Machine Learning studio](../quicks
7474
)
7575
```
7676

77-
* **[Sovereign cloud](../reference-machine-learning-cloud-parity.md)**. You'll need extra code to authenticate to Azure if you're working in a sovereign cloud.
77+
* **[Sovereign cloud](../reference-machine-learning-cloud-parity.md)**. You need extra code to authenticate to Azure if you're working in a sovereign cloud.
7878

7979
[!INCLUDE [sdk v1](../includes/machine-learning-sdk-v1.md)]
8080

@@ -95,7 +95,7 @@ You can create a workspace [directly in Azure Machine Learning studio](../quicks
9595

9696
For more information, see [Workspace SDK reference](/python/api/azureml-core/azureml.core.workspace.workspace).
9797

98-
If you have problems in accessing your subscription, see [Set up authentication for Azure Machine Learning resources and workflows](how-to-setup-authentication.md), as well as the [Authentication in Azure Machine Learning](https://aka.ms/aml-notebook-auth) notebook.
98+
If you have problems in accessing your subscription, see [Set up authentication for Azure Machine Learning resources and workflows](how-to-setup-authentication.md), and the [Authentication in Azure Machine Learning](https://aka.ms/aml-notebook-auth) notebook.
9999

100100

101101
### Networking
@@ -147,7 +147,7 @@ from azureml.core import Workspace
147147

148148
### Download a configuration file
149149

150-
If you'll be using a [compute instance](../quickstart-create-resources.md) in your workspace to run your code, skip this step. The compute instance will create and store a copy of this file for you.
150+
If you are using a [compute instance](../quickstart-create-resources.md) in your workspace to run your code, skip this step. The compute instance will create and store a copy of this file for you.
151151

152152
If you plan to use code on your local environment that references this workspace (`ws`), write the configuration file:
153153

@@ -161,7 +161,7 @@ Place the file into the directory structure with your Python scripts or Jupyter
161161

162162
## Connect to a workspace
163163

164-
In your Python code, you create a workspace object to connect to your workspace. This code will read the contents of the configuration file to find your workspace. You'll get a prompt to sign in if you aren't already authenticated.
164+
In your Python code, you create a workspace object to connect to your workspace. This code reads the contents of the configuration file to find your workspace. You get a prompt to sign in if you aren't already authenticated.
165165

166166
[!INCLUDE [sdk v1](../includes/machine-learning-sdk-v1.md)]
167167

@@ -183,7 +183,7 @@ ws = Workspace.from_config()
183183
ws = Workspace.from_config(auth=interactive_auth)
184184
```
185185

186-
* **[Sovereign cloud](../reference-machine-learning-cloud-parity.md)**. You'll need extra code to authenticate to Azure if you're working in a sovereign cloud.
186+
* **[Sovereign cloud](../reference-machine-learning-cloud-parity.md)**. You need extra code to authenticate to Azure if you're working in a sovereign cloud.
187187

188188
[!INCLUDE [sdk v1](../includes/machine-learning-sdk-v1.md)]
189189

@@ -195,7 +195,7 @@ ws = Workspace.from_config()
195195
ws = Workspace.from_config(auth=interactive_auth)
196196
```
197197

198-
If you have problems in accessing your subscription, see [Set up authentication for Azure Machine Learning resources and workflows](../how-to-setup-authentication.md), as well as the [Authentication in Azure Machine Learning](https://aka.ms/aml-notebook-auth) notebook.
198+
If you have problems in accessing your subscription, see [Set up authentication for Azure Machine Learning resources and workflows](../how-to-setup-authentication.md), and the [Authentication in Azure Machine Learning](https://aka.ms/aml-notebook-auth) notebook.
199199

200200
## Find a workspace
201201

0 commit comments

Comments
 (0)