Skip to content

Commit 7533249

Browse files
committed
fix links; add toc
1 parent 2a51d4f commit 7533249

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

articles/machine-learning/v1/toc.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@
4545
- name: Tutorials
4646
expanded: true
4747
items:
48+
- name: Python get started (Day 1)
49+
expanded: true
50+
items:
51+
- name: 1. Run a Python script
52+
href: tutorial-1st-experiment-hello-world.md
53+
- name: 2. Train your model
54+
href: tutorial-1st-experiment-sdk-train.md
55+
- name: 3. Use your own data
56+
href: tutorial-1st-experiment-bring-data.md
4857
- name: "Build a training pipeline (Python)"
4958
href: "tutorial-pipeline-python-sdk.md"
5059
- name: How-to guides

articles/machine-learning/v1/tutorial-1st-experiment-bring-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ To run this script in Azure Machine Learning, you need to make your training dat
188188
The `target_path` value specifies the path on the datastore where the CIFAR10 data will be uploaded.
189189

190190
>[!TIP]
191-
> While you're using Azure Machine Learning to upload the data, you can use [Azure Storage Explorer](https://azure.microsoft.com/features/storage-explorer/) to upload ad hoc files. If you need an ETL tool, you can use [Azure Data Factory](../data-factory/introduction.md) to ingest your data into Azure.
191+
> While you're using Azure Machine Learning to upload the data, you can use [Azure Storage Explorer](https://azure.microsoft.com/features/storage-explorer/) to upload ad hoc files. If you need an ETL tool, you can use [Azure Data Factory](../../data-factory/introduction.md) to ingest your data into Azure.
192192

193193
2. Select **Save and run script in terminal** to run the *upload-data.py* script.
194194

articles/machine-learning/v1/tutorial-1st-experiment-hello-world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In this tutorial, you will:
3636
3737
## Prerequisites
3838

39-
- Complete [Quickstart: Set up your workspace to get started with Azure Machine Learning](quickstart-create-resources.md) to create a workspace, compute instance, and compute cluster to use in this tutorial series.
39+
- Complete [Quickstart: Set up your workspace to get started with Azure Machine Learning](../quickstart-create-resources.md) to create a workspace, compute instance, and compute cluster to use in this tutorial series.
4040

4141
## Create and run a Python script
4242

@@ -127,7 +127,7 @@ Here's a description of how the control script works:
127127
`config = ScriptRunConfig( ... )`
128128
:::column-end:::
129129
:::column span="2":::
130-
[ScriptRunConfig](/python/api/azureml-core/azureml.core.scriptrunconfig) wraps your `hello.py` code and passes it to your workspace. As the name suggests, you can use this class to _configure_ how you want your _script_ to _run_ in Azure Machine Learning. It also specifies what compute target the script will run on. In this code, the target is the compute cluster that you created in the [setup tutorial](./quickstart-create-resources.md).
130+
[ScriptRunConfig](/python/api/azureml-core/azureml.core.scriptrunconfig) wraps your `hello.py` code and passes it to your workspace. As the name suggests, you can use this class to _configure_ how you want your _script_ to _run_ in Azure Machine Learning. It also specifies what compute target the script will run on. In this code, the target is the compute cluster that you created in the [setup tutorial](../quickstart-create-resources.md).
131131
:::column-end:::
132132
:::row-end:::
133133
:::row:::

0 commit comments

Comments
 (0)