Your comprehensive guide to leveraging the power of Azure Machine Learning.
Welcome to the Azure AI Machine Learning (Azure AI ML) community! This guide will help you get started with building, training, and deploying machine learning models on Azure.
Azure AI ML is a cloud-based service that enables you to build, train, deploy, and manage machine learning models at scale. It provides a collaborative environment with end-to-end ML lifecycle management capabilities, empowering data scientists and developers to accelerate their ML projects.
This is your central hub for all ML activities. You can create one through the Azure portal or using the Azure CLI.
az ml workspace create --name my-workspace --resource-group my-rg --location eastus
Choose how you want to develop your ML solutions.
We recommend starting with the Azure ML Studio for a visual experience.
Azure AI ML supports various data sources. You can upload data directly or connect to existing Azure storage.
Learn how to create a Dataset
object to represent your data.
Use compute resources to train your model. Azure AI ML simplifies this process by managing compute provisioning and job submission.
Explore the Experiment
and Run
objects for tracking.
Make your trained model accessible for predictions.
Learn about creating InferenceConfig
and DeploymentConfig
.