Skip to content

Commit 4c9cfdd

Browse files
authored
Merge pull request #213060 from sdgilley/sdg-main-new-samples
modify for new samples structure
2 parents ce29594 + 1fddc34 commit 4c9cfdd

File tree

7 files changed

+38
-16
lines changed

7 files changed

+38
-16
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ How you launch TensorBoard with Azure Machine Learning experiments depends on th
3737
* Azure Machine Learning compute instance - no downloads or installation necessary
3838
* Complete the [Quickstart: Get started with Azure Machine Learning](quickstart-create-resources.md) to create a dedicated notebook server pre-loaded with the SDK and the sample repository.
3939
* In the samples folder on the notebook server, find two completed and expanded notebooks by navigating to these directories:
40-
* **how-to-use-azureml > track-and-monitor-experiments > tensorboard > export-run-history-to-tensorboard > export-run-history-to-tensorboard.ipynb**
41-
* **how-to-use-azureml > track-and-monitor-experiments > tensorboard > tensorboard > tensorboard.ipynb**
40+
* **v1 (`<version>`) > how-to-use-azureml > track-and-monitor-experiments > tensorboard > export-run-history-to-tensorboard > export-run-history-to-tensorboard.ipynb**
41+
* **v1 (`<version>`) > how-to-use-azureml > track-and-monitor-experiments > tensorboard > tensorboard > tensorboard.ipynb**
4242
* Your own Juptyer notebook server
4343
* [Install the Azure Machine Learning SDK](/python/api/overview/azure/ml/install) with the `tensorboard` extra
4444
* [Create an Azure Machine Learning workspace](quickstart-create-resources.md).

articles/machine-learning/v1/how-to-use-reinforcement-learning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ Run this code in either of these environments. We recommend you try Azure Machin
3737

3838
- Azure Machine Learning compute instance
3939

40-
- Learn how to clone sample notebooks in [Tutorial: Train and deploy a model](../tutorial-train-deploy-notebook.md).
41-
- Clone the **how-to-use-azureml** folder instead of **tutorials**
40+
- Learn how to clone sample notebooks in [Tutorial: Train and deploy a model](tutorial-train-deploy-notebook.md).
41+
- Clone the **v1 (`<version>`) > how-to-use-azureml** folder instead of **tutorials**
4242
- 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.
4343
- Run the sample notebook `/how-to-use-azureml/reinforcement-learning/atari-on-distributed-compute/pong_rllib.ipynb`
4444

39.2 KB
Loading
-12 KB
Loading

articles/machine-learning/v1/tutorial-train-deploy-notebook.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Learn how to take the following actions:
3939

4040
Azure Machine Learning includes a cloud notebook server in your workspace for an install-free and pre-configured experience. Use [your own environment](../how-to-configure-environment.md#local) if you prefer to have control over your environment, packages, and dependencies.
4141

42-
4342
## Clone a notebook folder
4443

4544
You complete the following experiment setup and run steps in Azure Machine Learning studio. This consolidated interface includes machine learning tools to perform data science scenarios for data science practitioners of all skill levels.
@@ -50,25 +49,21 @@ You complete the following experiment setup and run steps in Azure Machine Learn
5049

5150
1. On the left, select **Notebooks**.
5251

53-
1. Select the **Open terminal** tool to open a terminal window.
54-
55-
:::image type="content" source="media/tutorial-train-deploy-notebook/open-terminal.png" alt-text="Screenshot: Open terminal from Notebooks section.":::
52+
1. At the top, select the **Samples** tab.
5653

57-
1. On the top bar, select the compute instance you created during the [Quickstart: Get started with Azure Machine Learning](../quickstart-create-resources.md) to use if it's not already selected. Start the compute instance if it is stopped.
54+
1. Open the **v1 (`<version>`)** folder. The version number represents the current v1 release for the Python SDK.
5855

59-
1. In the terminal window, clone the MachineLearningNotebooks repository:
56+
1. Select the **...** button at the right of the **tutorials** folder, and then select **Clone**.
6057

61-
```bash
62-
git clone --depth 1 https://github.com/Azure/MachineLearningNotebooks
63-
```
58+
:::image type="content" source="media/tutorial-train-deploy-notebook/clone-tutorials.png" alt-text="Screenshot that shows the Clone tutorials folder.":::
6459

65-
1. If necessary, refresh the list of files with the **Refresh** tool to see the newly cloned folder under your user folder.
60+
1. A list of folders shows each user who accesses the workspace. Select your folder to clone the **tutorials** folder there.
6661

6762
## Open the cloned notebook
6863

69-
1. Open the **MachineLearningNotebooks** folder that was cloned into your **Files** section.
64+
1. Open the **tutorials** folder that was cloned into your **User files** section.
7065

71-
1. Select the **quickstart-azureml-in-10mins.ipynb** file from your **MachineLearningNotebooks/tutorials/compute-instance-quickstarts/quickstart-azureml-in-10mins** folder.
66+
1. Select the **quickstart-azureml-in-10mins.ipynb** file from your **tutorials/compute-instance-quickstarts/quickstart-azureml-in-10mins** folder.
7267

7368
:::image type="content" source="media/tutorial-train-deploy-notebook/expand-folder.png" alt-text="Screenshot shows the Open tutorials folder.":::
7469

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
author: sdgilley
3+
ms.service: machine-learning
4+
ms.topic: include
5+
ms.date: 09/28/2022
6+
ms.author: sgilley
7+
---
8+
9+
1. Sign in to [Azure Machine Learning studio](https://ml.azure.com/).
10+
11+
1. Select your subscription and the workspace you created.
12+
13+
1. On the left, select **Notebooks**.
14+
15+
1. Select the **Open terminal** tool to open a terminal window.
16+
17+
:::image type="content" source="../articles/machine-learning/v1/media/samples-notebooks-v1/open-terminal.png" alt-text="Screenshot: Open terminal from Notebooks section.":::
18+
19+
1. On the top bar, select the compute instance you created during the [Quickstart: Get started with Azure Machine Learning](../articles/machine-learning/quickstart-create-resources.md) to use if it's not already selected. Start the compute instance if it is stopped.
20+
21+
1. In the terminal window, clone the MachineLearningNotebooks repository:
22+
23+
```bash
24+
git clone --depth 1 https://github.com/Azure/MachineLearningNotebooks
25+
```
26+
27+
1. If necessary, refresh the list of files with the **Refresh** tool to see the newly cloned folder under your user folder.

0 commit comments

Comments
 (0)