Skip to content

Commit 01e7379

Browse files
committed
fix blocking and non-blocking issues
1 parent 0f42d9b commit 01e7379

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/machine-learning/service/tutorial-1st-experiment-sdk-train.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ After the training has completed, call the `experiment` variable to fetch a link
121121
experiment
122122
```
123123

124-
<table style="width:100%"><tr><th>Name</th><th>Workspace</th><th>Report Page</th><th>Docs Page</th></tr><tr><td>diabetes-experiment</td><td>your-workspace-name</td><td>Link to Azure Portal</td><td>Link to Documentation</td></tr></table>
124+
<table style="width:100%"><tr><th>Name</th><th>Workspace</th><th>Report Page</th><th>Docs Page</th></tr><tr><td>diabetes-experiment</td><td>your-workspace-name</td><td>Link to Azure portal</td><td>Link to Documentation</td></tr></table>
125125

126126
## View training results in portal
127127

128-
Following the **Link to Azure Portal** takes you to the main experiment page. Here you see all the individual runs in the experiment. Any custom-logged values (`alpha_value` and `rmse`, in this case) become fields for each run, and also become available for the charts and tiles at the top of the experiment page. To add a logged metric to a chart or tile, hover over it, click the edit button, and find your custom-logged metric.
128+
Following the **Link to Azure portal** takes you to the main experiment page. Here you see all the individual runs in the experiment. Any custom-logged values (`alpha_value` and `rmse`, in this case) become fields for each run, and also become available for the charts and tiles at the top of the experiment page. To add a logged metric to a chart or tile, hover over it, click the edit button, and find your custom-logged metric.
129129

130130
When training models at scale over hundreds and thousands of separate runs, this page makes it easy to see every model you trained, specifically how they were trained, and how your unique metrics have changed over time.
131131

@@ -165,7 +165,7 @@ print("Best run_id rmse: " + str(minimum_rmse))
165165
Best run_id: 864f5ce7-6729-405d-b457-83250da99c80
166166
Best run_id rmse: 57.234760283951765
167167

168-
Use the best run id to fetch the individual run using the `Run` constructor along with the experiment object. Then call `get_file_names()` to see all the files available for download from this run. In this case, you only uploaded one file for each run during training.
168+
Use the best run ID to fetch the individual run using the `Run` constructor along with the experiment object. Then call `get_file_names()` to see all the files available for download from this run. In this case, you only uploaded one file for each run during training.
169169

170170
```python
171171
from azureml.core import Run

includes/aml-create-in-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ms.date: 08/14/2019
3535
1. After you are finished configuring the workspace, select **Create**.
3636

3737
> [!Warning]
38-
> It can take a several minutes to create your workspace in the cloud.
38+
> It can take several minutes to create your workspace in the cloud.
3939
4040
When the process is finished, a deployment success message appears.
4141

0 commit comments

Comments
 (0)