You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Quickstart: Get started with Azure Machine Learning](https://learn.microsoft.com/en-us/azure/machine-learning/tutorial-azure-ml-in-a-day?view=azureml-api-2)
18
+
-[Azure AI Foundry portal or Azure Machine Learning studio: Which experience should I choose?](https://learn.microsoft.com/en-us/ai/ai-studio-experiences-overview?toc=%2Fazure%2Fmachine-learning%2Ftoc.json&bc=%2Fazure%2Fmachine-learning%2Fbreadcrumb%2Ftoc.json&view=azureml-api-2)
19
+
-[Using Azure Machine Learning (AML) for Medical Imaging Vision Model Training and Fine-tuning](https://techcommunity.microsoft.com/blog/machinelearningblog/using-azure-machine-learning-aml-for-medical-imaging-vision-model-training-and-f/4408743)
20
+
16
21
</details>
17
22
18
23
<details>
@@ -22,6 +27,8 @@ Last updated: 2025-04-28
22
27
23
28
> Azure Machine Learning (PaaS) is a cloud-based platform from Microsoft designed to help `data scientists and machine learning engineers build, train, deploy, and manage machine learning models at scale`. It supports the `entire machine learning lifecycle, from data preparation and experimentation to deployment and monitoring.` It provides powerful tools for `both code-first and low-code users`, including Jupyter notebooks, drag-and-drop interfaces, and automated machine learning (AutoML). `Azure ML integrates seamlessly with other Azure services and supports popular frameworks like TensorFlow, PyTorch, and Scikit-learn.`
|**Purpose**| End-to-end ML lifecycle management and MLOps | Unified data analytics and business intelligence platform | Unified platform for building and deploying AI solutions |
@@ -33,9 +40,30 @@ Last updated: 2025-04-28
33
40
|**Target Users**| Data scientists, ML engineers | Data analysts, data scientists, data engineers, developers, business users, executives | AI developers, app builders, enterprise teams |
34
41
|**Integration**| Azure DevOps, GitHub, MLflow | Power BI, Synapse, Azure Data Factory | GitHub, VS Code, LangChain, Semantic Kernel, Azure AI |
35
42
43
+
> Click here to read more about [Azure AI Foundry portal or Azure Machine Learning studio: Which experience should I choose? - Detailed feature comparison](https://learn.microsoft.com/en-us/ai/ai-studio-experiences-overview?toc=%2Fazure%2Fmachine-learning%2Ftoc.json&bc=%2Fazure%2Fmachine-learning%2Fbreadcrumb%2Ftoc.json&view=azureml-api-2#detailed-feature-comparison)
36
44
37
45
## Workspace
38
46
47
+
> A taxonomy of the workspace is illustrated in the following diagram, from [What is an Azure Machine Learning workspace?](https://learn.microsoft.com/en-us/azure/machine-learning/concept-workspace?view=azureml-api-2) <br/>
48
+
> **`Compute Instances`**: Preconfigured VMs (CPU/GPU) used for development, experimentation, and running notebooks. <br/>
49
+
> **`Experiments`**: A training run that executes a script with different configurations (e.g., hyperparameters, datasets). It helps track and compare model performance across multiple runs. <br/>
50
+
> **`Model`**: The result of a successful experiment. It represents the trained algorithm and is registered in Azure ML for versioning and reuse. A registered model is essentially the output artifact of an experiment. <br/>
51
+
> **`Endpoint`**: A deployed model exposed as a web service or REST API. Endpoints allow real-time or batch inference. It's important to configure security settings properly, including network access (e.g., VNet integration) and port restrictions. <br/>
52
+
> **`Pipelines`**: Reusable, modular workflows that chain together multiple steps (e.g., data prep, training, evaluation). Useful for automating and orchestrating ML processes. <br/>
53
+
> **`Datasets`**: Versioned data assets used in experiments and pipelines. They ensure consistency and reproducibility across training runs. <br/>
54
+
> **`Registered Models`**: The output of successful experiments. These are trained models saved and versioned for deployment and reuse. <br/>
55
+
> **`Deployment Endpoints`**: Deployed models exposed as REST APIs for real-time or batch inference. Security settings (e.g., VNet, authentication, ports) should be reviewed carefully. <br/>
0 commit comments