Skip to content

Commit 977bdd7

Browse files
author
Larry Franks
committed
moving v1 articles to v1 folder
1 parent 42cc7f0 commit 977bdd7

10 files changed

+9
-9
lines changed

articles/machine-learning/how-to-train-keras.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ It's now time to submit the job to run in AzureML. This time, you'll use `create
180180
Once completed, the job will register a model in your workspace (as a result of training) and output a link for viewing the job in AzureML studio.
181181

182182
> [!WARNING]
183-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory.
183+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](concept-train-machine-learning-model.md#understand-what-happens-when-you-submit-a-training-job) or don't include it in the source directory.
184184
185185
### What happens during job execution
186186
As the job is executed, it goes through the following stages:

articles/machine-learning/how-to-train-pytorch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ It's now time to submit the job to run in AzureML. This time, you'll use `create
140140
Once completed, the job will register a model in your workspace (as a result of training) and output a link for viewing the job in AzureML studio.
141141

142142
> [!WARNING]
143-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory.
143+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](concept-train-machine-learning-model.md#understand-what-happens-when-you-submit-a-training-job) or don't include it in the source directory.
144144
145145
### What happens during job execution
146146
As the job is executed, it goes through the following stages:

articles/machine-learning/how-to-train-scikit-learn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ It's now time to submit the job to run in AzureML. This time you'll use `create_
164164
Once completed, the job will register a model in your workspace (as a result of training) and output a link for viewing the job in AzureML studio.
165165

166166
> [!WARNING]
167-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory.
167+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](concept-train-machine-learning-model.md#understand-what-happens-when-you-submit-a-training-job) or don't include it in the source directory.
168168
169169
### What happens during job execution
170170
As the job is executed, it goes through the following stages:

articles/machine-learning/how-to-train-tensorflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ It's now time to submit the job to run in AzureML. This time, you'll use `create
166166
Once completed, the job will register a model in your workspace (as a result of training) and output a link for viewing the job in AzureML studio.
167167

168168
> [!WARNING]
169-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory.
169+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](concept-train-machine-learning-model.md#understand-what-happens-when-you-submit-a-training-job) or don't include it in the source directory.
170170
171171
### What happens during job execution
172172
As the job is executed, it goes through the following stages:

articles/machine-learning/how-to-train-with-custom-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ run.wait_for_completion(show_output=True)
171171
```
172172

173173
> [!WARNING]
174-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use an [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory. Instead, access your data by using a [datastore](/python/api/azureml-core/azureml.data).
174+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use an [.ignore file](concept-train-machine-learning-model.md#understand-what-happens-when-you-submit-a-training-job) or don't include it in the source directory. Instead, access your data by using a [datastore](/python/api/azureml-core/azureml.data).
175175
176176
## Next steps
177177
In this article, you trained a model by using a custom Docker image. See these other articles to learn more about Azure Machine Learning:
File renamed without changes.

articles/machine-learning/v1/how-to-train-pytorch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ src = ScriptRunConfig(source_directory=project_folder,
211211
```
212212

213213
> [!WARNING]
214-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](../how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory . Instead, access your data using an Azure ML [dataset](how-to-train-with-datasets.md).
214+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory . Instead, access your data using an Azure ML [dataset](how-to-train-with-datasets.md).
215215

216216
For more information on configuring jobs with ScriptRunConfig, see [Configure and submit training runs](how-to-set-up-training-targets.md).
217217

articles/machine-learning/v1/how-to-train-scikit-learn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ run.wait_for_completion(show_output=True)
141141
```
142142

143143
> [!WARNING]
144-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](../how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory . Instead, access your data using an Azure ML [dataset](how-to-train-with-datasets.md).
144+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory . Instead, access your data using an Azure ML [dataset](how-to-train-with-datasets.md).
145145
146146
### What happens during run execution
147147
As the run is executed, it goes through the following stages:

articles/machine-learning/v1/how-to-train-tensorflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ src = ScriptRunConfig(source_directory=script_folder,
222222
```
223223

224224
> [!WARNING]
225-
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](../how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory . Instead, access your data using an Azure ML [dataset](how-to-train-with-datasets.md).
225+
> Azure Machine Learning runs training scripts by copying the entire source directory. If you have sensitive data that you don't want to upload, use a [.ignore file](how-to-save-write-experiment-files.md#storage-limits-of-experiment-snapshots) or don't include it in the source directory . Instead, access your data using an Azure ML [dataset](how-to-train-with-datasets.md).
226226

227227
For more information on configuring jobs with ScriptRunConfig, see [Configure and submit training runs](how-to-set-up-training-targets.md).
228228

articles/machine-learning/v1/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
href: how-to-use-environments.md
167167
- name: Set input & output directories
168168
displayName: large data, write, experiment files, size limit
169-
href: ../how-to-save-write-experiment-files.md
169+
href: how-to-save-write-experiment-files.md
170170
- name: Use private Python packages
171171
displayName: pip, Conda, anaconda
172172
href: how-to-use-private-python-packages.md

0 commit comments

Comments
 (0)