MLOpsPython/README.md

84 строки
7.2 KiB
Markdown
Исходник Обычный вид История

2019-03-29 21:01:33 +03:00
### Author: | Praneet Singh Solanki | Richin Jain |
2019-02-06 02:03:43 +03:00
2019-03-29 21:34:43 +03:00
# DevOps for AI
2019-02-06 02:03:43 +03:00
[![Build Status](https://dev.azure.com/customai/DevopsForAI-AML/_apis/build/status/Microsoft.DevOpsForAI?branchName=master)](https://dev.azure.com/customai/DevopsForAI-AML/_build/latest?definitionId=1&branchName=master)
2019-03-29 21:01:33 +03:00
DevOps for AI will help you to understand how to build the Continuous Integration and Continuous Delivery pipeline for a ML/AI project. We will be using the Azure DevOps Project for build and release/deployment pipelines along with Azure ML services for model retraining pipeline, model management and operationalization.
2019-02-06 02:03:43 +03:00
2019-03-29 21:34:43 +03:00
This template contains code and pipeline definition for a machine learning project demonstrating how to automate the end to end ML/AI project. The build pipelines include DevOps tasks for data sanity test, unit test, model training on different compute targets, model version management, model evaluation/model selection, model deployment as realtime web service, staged deployment to QA/prod and integration testing.
2019-02-06 02:03:43 +03:00
2019-03-29 21:01:33 +03:00
2019-02-06 02:03:43 +03:00
## Prerequisite
- Active Azure subscription
2019-03-29 21:01:33 +03:00
- At least contributor access to Azure subscription
2019-02-06 02:03:43 +03:00
## Getting Started:
2019-03-29 21:34:43 +03:00
To deploy this solution in your subscription, follow the manual instructions in the [getting started](docs/getting_started.md) doc
2019-03-29 21:01:33 +03:00
## Architecture Diagram
This reference architecture shows how to implement continuous integration (CI), continuous delivery (CD), and retraining pipeline for an AI application using Azure DevOps and Azure Machine Learning. The solution is built on the scikit-learn diabetes dataset but can be easily adapted for any AI scenario and other popular build systems such as Jenkins and Travis.
2019-03-29 21:34:43 +03:00
![Architecture](/docs/images/Architecture_DevOps_AI.png)
2019-03-29 21:01:33 +03:00
## Architecture Flow
2019-03-29 21:34:43 +03:00
1. Data Scientist writes/updates the code and push it to git repo. This triggers the Azure DevOps build pipeline (continuous integration).
2019-03-29 21:01:33 +03:00
2. Once the Azure DevOps build pipeline is triggered, it runs following type of tasks:
2019-03-29 21:34:43 +03:00
- Run for new code: Every time new code is committed to the repo, build pipeline performs data sanity test and unit tests the new code.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
- One-time run: These tasks run only for the first time that the build pipeline runs. They will programatically create an [Azure ML Service Workspace](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#workspace), provision [Azure ML Compute](https://docs.microsoft.com/en-us/azure/machine-learning/service/how-to-set-up-training-targets#amlcompute) (used for model training compute), and publish an [Azure ML Pipeline](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-ml-pipelines). This published Azure ML pipeline is the model training/retraining pipeline.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
> Note: The task Publish Azure ML pipeline currently runs for every code change`
2019-03-29 21:01:33 +03:00
3. The Azure ML Retraining pipeline is triggered once the Azure DevOps build pipeline completes. All the tasks in this pipeline runs on Azure ML Compute created earlier. Following are the tasks in this pipeline:
2019-04-05 16:40:09 +03:00
- **Train Model** task executes model training script on Azure ML Compute. It outputs a [model](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#model) file which is stored in the [run history](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#run).
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
- **Evaluate Model** task evaluates the performance of newly trained model with the model in production. If the new model performs better than the production model, the following steps are executed. If not, they will be skipped.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
- **Register Model** task takes the improved model and registers it with the [Azure ML Model registry](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#model-registry). This allows us to version control it.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
- **Package Model** task packages the new model along with the scoring file and its python dependencies into a [docker image](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#image) and pushes it to [Azure Container Registry](https://docs.microsoft.com/en-us/azure/container-registry/container-registry-intro). This image is used to deploy the model as [web service](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#web-service).
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
4. Once a new model scoring image is pushed to Azure Container Registry, the Azure DevOps Release/Deployment pipeline is triggered. This pipeline deploys the model scoring image into Staging/QA and PROD environments.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
- In the Staging/QA environment, one task creates an [Azure Container Instance](https://docs.microsoft.com/en-us/azure/container-instances/container-instances-overview) and deploys the scoring image as a [web service](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#web-service) on it.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
- The second task tests this web service by calling its REST endpoint with dummy data.
2019-03-29 21:01:33 +03:00
2019-04-05 16:40:09 +03:00
5. The deployment in production is a [gated release](https://docs.microsoft.com/en-us/azure/devops/pipelines/release/approvals/gates?view=azure-devops). This means that once the model web service deployment in the Staging/QA environment is successful, a notification is sent to approvers to manually review and approve the release. Once the release is approved, the model scoring web service is deployed to [Azure Kubernetes Service(AKS)](https://docs.microsoft.com/en-us/azure/aks/intro-kubernetes) and the deployment is tested.
2019-02-06 02:03:43 +03:00
### Repo Details
2019-03-29 21:01:33 +03:00
You can find the details of the code and scripts in the repository [here](/docs/code_description.md)
2019-02-06 02:03:43 +03:00
### References
- [Azure Machine Learning(Azure ML) Service Workspace](https://docs.microsoft.com/en-us/azure/machine-learning/service/overview-what-is-azure-ml)
- [Azure ML Samples](https://docs.microsoft.com/en-us/azure/machine-learning/service/samples-notebooks)
- [Azure ML Python SDK Quickstart](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
- [Azure DevOps](https://docs.microsoft.com/en-us/azure/devops/?view=vsts)
2019-03-29 21:01:33 +03:00
- [DevOps for AI template (Old Version)](https://azuredevopsdemogenerator.azurewebsites.net/?name=azure%20machine%20learning)
2019-01-29 22:48:10 +03:00
# Contributing
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.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., label, 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](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.