Skip to content

Commit 350ea25

Browse files
authored
Merge pull request #209339 from sdgilley/sdg-v2
move how-to-set-up-compute-targets
2 parents 52cc33d + 5559d26 commit 350ea25

37 files changed

+72
-76
lines changed

articles/machine-learning/.openpublishing.redirection.machine-learning.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,12 @@
13031303
},
13041304
{
13051305
"source_path_from_root": "/articles/machine-learning/service/how-to-set-up-training-targets.md",
1306-
"redirect_url": "/azure/machine-learning/how-to-set-up-training-targets",
1306+
"redirect_url": "/azure/machine-learning/v1/how-to-set-up-training-targets",
1307+
"redirect_document_id": false
1308+
},
1309+
{
1310+
"source_path_from_root": "/articles/machine-learning/how-to-set-up-training-targets.md",
1311+
"redirect_url": "/azure/machine-learning/v1/how-to-set-up-training-targets",
13071312
"redirect_document_id": true
13081313
},
13091314
{

articles/machine-learning/concept-automated-ml.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,6 @@ Using **Azure Machine Learning**, you can design and run your automated ML train
182182

183183
1. **Specify the source and format of the labeled training data**: Numpy arrays or Pandas dataframe
184184

185-
1. **Configure the compute target for model training**, such as your [local computer, Azure Machine Learning Computes, remote VMs, or Azure Databricks](how-to-set-up-training-targets.md).
186-
187185
1. **Configure the automated machine learning parameters** that determine how many iterations over different models, hyperparameter settings, advanced preprocessing/featurization, and what metrics to look at when determining the best model.
188186
1. **Submit the training job.**
189187

articles/machine-learning/concept-compute-target.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Azure Machine Learning has varying support across different compute targets. A t
3131

3232
[!INCLUDE [aml-compute-target-train](../../includes/aml-compute-target-train.md)]
3333

34-
Learn more about how to [submit a training job to a compute target](how-to-set-up-training-targets.md).
3534

3635
## <a name="deploy"></a> Compute targets for inference
3736

@@ -171,5 +170,4 @@ For more information, see [set up compute targets for model training and deploym
171170
## Next steps
172171

173172
Learn how to:
174-
* [Use a compute target to train your model](how-to-set-up-training-targets.md)
175173
* [Deploy your model to a compute target](how-to-deploy-managed-online-endpoints.md)

articles/machine-learning/concept-deep-learning-vs-machine-learning.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,3 @@ The following articles show you more options for using open-source deep learning
142142
- [Classify handwritten digits by using a TensorFlow model](./how-to-train-tensorflow.md?WT.mc_id=docs-article-lazzeri)
143143

144144
- [Classify handwritten digits by using a TensorFlow estimator and Keras](./how-to-train-keras.md?WT.mc_id=docs-article-lazzeri)
145-
146-
- [Classify handwritten digits by using a Chainer model](./how-to-set-up-training-targets.md?WT.mc_id=docs-article-lazzeri)

articles/machine-learning/concept-distributed-training.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,5 @@ In model parallelism, worker nodes only need to synchronize the shared parameter
4646

4747
## Next steps
4848

49-
* Learn how to [use compute targets for model training](how-to-set-up-training-targets.md) with the Python SDK.
5049
* For a technical example, see the [reference architecture scenario](/azure/architecture/reference-architectures/ai/training-deep-learning).
5150
* Find tips for MPI, TensorFlow, and PyTorch in the [Distributed GPU training guide](how-to-train-distributed-gpu.md)

articles/machine-learning/concept-model-management-and-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Microsoft Power BI supports using machine learning models for data analytics. Fo
146146

147147
Machine Learning gives you the capability to track the end-to-end audit trail of all your machine learning assets by using metadata. For example:
148148

149-
- Machine Learning [integrates with Git](how-to-set-up-training-targets.md#gitintegration) to track information on which repository, branch, and commit your code came from.
149+
- Machine Learning [integrates with Git](concept-train-model-git-integration.md) to track information on which repository, branch, and commit your code came from.
150150
- [Machine Learning datasets](how-to-create-register-datasets.md) help you track, profile, and version data.
151151
- [Interpretability](how-to-machine-learning-interpretability.md) allows you to explain your models, meet regulatory compliance, and understand how models arrive at a result for specific input.
152152
- Machine Learning Job history stores a snapshot of the code, data, and computes used to train a model.

articles/machine-learning/concept-train-machine-learning-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You may start with a run configuration for your local computer, and then switch
4848
* [What is a run configuration?](v1/concept-azure-machine-learning-architecture.md#run-configurations)
4949
* [Tutorial: Train your first ML model](tutorial-1st-experiment-sdk-train.md)
5050
* [Examples: Jupyter Notebook and Python examples of training models](https://github.com/Azure/azureml-examples)
51-
* [How to: Configure a training run](how-to-set-up-training-targets.md)
51+
* [How to: Configure a training run](v1/how-to-set-up-training-targets.md)
5252

5353
### Automated Machine Learning
5454

@@ -116,4 +116,4 @@ You can use the VS Code extension to run and manage your training jobs. See the
116116

117117
## Next steps
118118

119-
Learn how to [Configure a training run](how-to-set-up-training-targets.md).
119+
Learn how to [Configure a training run](v1/how-to-set-up-training-targets.md).

articles/machine-learning/concept-train-model-git-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@ run.properties['azureml.git.commit']
192192
193193
## Next steps
194194
195-
* [Use compute targets for model training](how-to-set-up-training-targets.md)
195+
* [Use compute targets for model training](v1/how-to-set-up-training-targets.md)

articles/machine-learning/how-to-attach-kubernetes-anywhere.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ In the above example, replace `<instance_type_name>` with the name of the instan
437437
## Next steps
438438

439439
- [Train models with CLI v2](how-to-train-cli.md)
440-
- [Train models with Python SDK](how-to-set-up-training-targets.md)
440+
- [Train models with Python SDK](how-to-train-sdk.md)
441441
- [Deploy model with an online endpoint (CLI v2)](./how-to-deploy-managed-online-endpoints.md)
442442
- [Use batch endpoint for batch scoring (CLI v2)](./how-to-use-batch-endpoint.md)
443443

articles/machine-learning/how-to-create-attach-compute-cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,5 +318,5 @@ If your Azure Machine Learning compute cluster appears stuck at resizing (0 -> 0
318318

319319
Use your compute cluster to:
320320

321-
* [Submit a training run](how-to-set-up-training-targets.md)
321+
* [Submit a training run](v1/how-to-set-up-training-targets.md)
322322
* [Run batch inference](./tutorial-pipeline-batch-scoring-classification.md).

0 commit comments

Comments
 (0)