Azure Machine Learning Studio
Navigate the Azure Machine Learning Studio, run an automated ML experiment on a tabular dataset, and deploy the best model as a real-time scoring endpoint.
What Is Azure Machine Learning?
Azure Machine Learning (Azure ML) is a managed cloud platform for the full machine learning lifecycle — data preparation, experiment tracking, model training, evaluation, deployment, and monitoring. Unlike Azure AI Services (which provides pre-built AI), Azure ML lets you train your own models on your own data using any ML framework: scikit-learn, TensorFlow, PyTorch, XGBoost, and more. It is the preferred platform for data scientists and ML engineers working in Azure.
Azure ML Workspace
An Azure ML workspace is the top-level resource that ties together all ML resources: compute clusters, datasets, experiments, models, and deployments. When you create a workspace, Azure automatically provisions a linked Storage account (for data), Key Vault (for secrets), Application Insights (for deployment monitoring), and optionally a Container Registry (for custom environments). Everything in an ML project lives inside a single workspace, making collaboration and governance straightforward.
# Create an Azure ML workspace
az ml workspace create \
--name myMLWorkspace \
--resource-group myRG \
--location eastusAll lessons in this course
- Azure Cognitive Services Overview
- Language and Vision APIs in Practice
- Azure Machine Learning Studio
- Azure OpenAI Service