Reputation: 347
I read some articles with deployment examples and they were about deploying one model but not a whole deep learning system.
If I want to deploy my project including launch of multiple deep models built with different frameworks (Pytorch, tensorflow) then what's good option for that:
I would appreciate any reference/link on the subject. Thanx.
Upvotes: 2
Views: 83
Reputation: 2754
We have public open source release of Many Models solution accelerator. The accelerator is now available on GitHub and open to everyone: Many Models: https://aka.ms/many-models. • Check out a blog on Many Models from MTC AI Architect Sam here
Check this document using designer: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-deploy-model-designer? Basically you can register a trained model in Designer bring it out with SDK/CLI to deploy it.
One approach with current integration between Azure ML and Azure DevOps is to setup a release pipeline in Azure DevOps which is triggered by the model registration in your Dev workspace model registry which them deploys to your Prod workspace. There is guidance and examples in this repo https://github.com/Microsoft/MLOpsPython And more general guidance for MLops at http://aka.ms/mlops This also allows for putting integration tests into your release process or other steps like approval processes if needed using DevOps functionality.
Upvotes: 1