This hands-on walks you through fine-tuning an open source LLM on Azure and serving the fine-tuned model on Azure. It is intended for Data Scientists and ML engineers who have experience with fine-tuning but are unfamiliar with Azure ML.
62
stars
35
commits
Python
primary language
Mar 17, 2025
updated
This hands-on walks you through fine-tuning an open source SLM/LLM on Azure and serving the fine-tuned model on Azure. It is intended for Data Scientists and ML engineers who have experience with fine-tuning but are unfamiliar with Azure ML and Mlflow. This hands-on is suitable for the following purposes:
Before starting, you should meet the following requirements:
Azure ML getting started: Connect to [Azure ML] workspace and get your <WORKSPACE_NAME>, <RESOURCE_GROUP> and <SUBSCRIPTION_ID>.
Azure AI Studio getting started: Create a project
[Compute instance - for code development] A low-end instance without GPU is recommended: **[Standard_E2as_v4] (AMD 2 cores, 16GB RAM, 32GB storage) or [Standard_DS11_v2] (Intel 2 cores, 14GB RAM, 28GB storage, No GPUs)
[Compute cluster - for SLM/LLM fine-tuning] A single NVIDIA A100 GPU ([Standard_NC24ads_A100_v4]) is recommended. If you do not have a dedicated quota or are on a tight budget, choose [Low-priority VM].
[SLM/LLM deployment] Two NVIDIA V100 GPUs ([Standard_NC6s_v3]) or two NVIDIA A100 GPUs ([Standard_NC24ads_A100_v4]) are recommended.
Note
For managed online endpoints, [Azure ML reserves 20% of the quota for the deployment].1 If you request a given number of instances for those VM SKUs in a deployment, you must have a quota for ceil(1.2 × number of instances requested for deployment) × number of cores for the VM SKU available to avoid getting an error. For example, if you request 1 instances of a Standard_NC6s_v3 VM (that comes with six cores) in a deployment, you should have a quota for 12 cores (ceil(1.2 × 1 instances) = 2, 2 × 6 cores) available.
Standard_DS11_v2 (2 cores, 14GB RAM, 28GB storage, No GPUs).git clone https://github.com/Azure/slm-innovator-lab.git
conda activate azureml_py310_sdkv2
pip install -r requirements.txt
1_training_mlflow.ipynb and 2_serving.ipynb, respectively.1_training_custom.ipynb and 2_serving.ipynb, respectively.phi3/dataset-preparation folder.1_training_mlflow.ipynb and 2_serving.ipynb, respectively.config.yml.This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.
This sample code is provided under the MIT-0 license. See the LICENSE file.
This extra quota is reserved for system-initiated operations such as OS upgrades and VM recovery, and it won't incur cost unless such operations run. ↩
Python
51.0%
Jupyter Notebook
48.4%
This hands-on walks you through fine-tuning an open source LLM on Azure and serving the fine-tuned model on Azure. It is intended for Data Scientists and ML engineers who have experience with fine-tuning but are unfamiliar with Azure ML.
62
stars
35
commits
Python
primary language
Mar 17, 2025
updated
This hands-on walks you through fine-tuning an open source SLM/LLM on Azure and serving the fine-tuned model on Azure. It is intended for Data Scientists and ML engineers who have experience with fine-tuning but are unfamiliar with Azure ML and Mlflow. This hands-on is suitable for the following purposes:
Before starting, you should meet the following requirements:
Azure ML getting started: Connect to [Azure ML] workspace and get your <WORKSPACE_NAME>, <RESOURCE_GROUP> and <SUBSCRIPTION_ID>.
Azure AI Studio getting started: Create a project
[Compute instance - for code development] A low-end instance without GPU is recommended: **[Standard_E2as_v4] (AMD 2 cores, 16GB RAM, 32GB storage) or [Standard_DS11_v2] (Intel 2 cores, 14GB RAM, 28GB storage, No GPUs)
[Compute cluster - for SLM/LLM fine-tuning] A single NVIDIA A100 GPU ([Standard_NC24ads_A100_v4]) is recommended. If you do not have a dedicated quota or are on a tight budget, choose [Low-priority VM].
[SLM/LLM deployment] Two NVIDIA V100 GPUs ([Standard_NC6s_v3]) or two NVIDIA A100 GPUs ([Standard_NC24ads_A100_v4]) are recommended.
Note
For managed online endpoints, [Azure ML reserves 20% of the quota for the deployment].1 If you request a given number of instances for those VM SKUs in a deployment, you must have a quota for ceil(1.2 × number of instances requested for deployment) × number of cores for the VM SKU available to avoid getting an error. For example, if you request 1 instances of a Standard_NC6s_v3 VM (that comes with six cores) in a deployment, you should have a quota for 12 cores (ceil(1.2 × 1 instances) = 2, 2 × 6 cores) available.
Standard_DS11_v2 (2 cores, 14GB RAM, 28GB storage, No GPUs).git clone https://github.com/Azure/slm-innovator-lab.git
conda activate azureml_py310_sdkv2
pip install -r requirements.txt
1_training_mlflow.ipynb and 2_serving.ipynb, respectively.1_training_custom.ipynb and 2_serving.ipynb, respectively.phi3/dataset-preparation folder.1_training_mlflow.ipynb and 2_serving.ipynb, respectively.config.yml.This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.
This sample code is provided under the MIT-0 license. See the LICENSE file.
This extra quota is reserved for system-initiated operations such as OS upgrades and VM recovery, and it won't incur cost unless such operations run. ↩
Python
51.0%
Jupyter Notebook
48.4%