Skip to content

Commit bb2e3ab

Browse files
authored
Merge pull request #115677 from PeterCLu/plu-tb-patch
Fix tensorboard typos
2 parents 408eca7 + 30b8316 commit bb2e3ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-monitor-tensorboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The following code sets up a new experiment and names the run directory `root_ru
194194

195195
```python
196196
from azureml.core import Workspace, Experiment
197-
import azuremml.core
197+
import azureml.core
198198

199199
# set experiment name and run name
200200
ws = Workspace.from_config()
@@ -229,7 +229,7 @@ alphas = [.1, .2, .3, .4, .5, .6 , .7]
229229
# try a bunch of alpha values in a Linear Regression (aka Ridge regression) mode
230230
for alpha in tqdm(alphas):
231231
# create child runs and fit lines for the resulting models
232-
with root_run.child_run("alpha" + str(alpha)) as run
232+
with root_run.child_run("alpha" + str(alpha)) as run:
233233

234234
reg = Ridge(alpha=alpha)
235235
reg.fit(data["train"]["x"], data["train"]["y"])

0 commit comments

Comments
 (0)