From f570020462457c7b0658d4c114d4e232deb7c863 Mon Sep 17 00:00:00 2001 From: Andre Miranda Date: Wed, 9 Oct 2024 08:55:57 -0400 Subject: [PATCH] Update python_training.md small typo :D --- .docs/python_training.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.docs/python_training.md b/.docs/python_training.md index cc934f7..7ab5905 100644 --- a/.docs/python_training.md +++ b/.docs/python_training.md @@ -4,7 +4,7 @@

-There are many options for training ML models in Python on Azure. The most straight forward way is to train your model on a [DSVM](https://azure.microsoft.com/en-us/services/virtual-machines/data-science-virtual-machines/). You can either do this in local model straight on the VM or through attaching it in AzureML as a compute target. If you want to have AzureML manage the compute for you and scale it up and down based on whether jobs are waiting in the queue then you should AzureML Compute. +There are many options for training ML models in Python on Azure. The most straight forward way is to train your model on a [DSVM](https://azure.microsoft.com/en-us/services/virtual-machines/data-science-virtual-machines/). You can either do this in local model straight on the VM or through attaching it in AzureML as a compute target. If you want to have AzureML manage the compute for you and scale it up and down based on whether jobs are waiting in the queue, then you should AzureML Compute. Now if you are going to run multiple jobs for hyperparameter tuning or other purposes then we would recommend using [Hyperdrive](https://docs.microsoft.com/en-us/azure/machine-learning/service/how-to-tune-hyperparameters), [Azure automated ML](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-automated-ml) or AzureML Compute dependent on your requirements. -For a tutorial on how to use Hyperdrive go [here](https://github.com/Microsoft/MLHyperparameterTuning). \ No newline at end of file +For a tutorial on how to use Hyperdrive go [here](https://github.com/Microsoft/MLHyperparameterTuning).