10BC0 AI-1/.docs/python_training.md at master · mravindra-git/AI-1 · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 1.09 KB

File metadata and controls

10 lines (7 loc) · 1.09 KB

Azure services for training Python ML models

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. 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, Azure automated ML or AzureML Compute dependent on your requirements. For a tutorial on how to use Hyperdrive go here.

0