MLModelCI 是一个完整的 MLOps 平台,用于管理、转换、分析和部署 MLaaS (机器学习 即服务),弥补了当前 ML 开发流程中的缺口。
MLModelCI 是一个完整的 MLOps 平台,用于管理、转换、分析和部署 MLaaS (机器学习 即服务),弥补了当前 ML 开发流程中的缺口。
Machine Learning Model CI
中文简介 •
Features •
Installation •
Quick Start •
Notebook •
Tutorial •
Contributing •
Citation •
License
Machine Learning Model CI is a one-stop machine learning MLOps platform on clouds, aiming to solve the "last mile" problem between model training and model serving. We implement a highly automated pipeline between the trained models and the online machine learning applications.
We offer the following features and users 1) can register models to our system and enjoy the automated pipeline, 2) or use them individually.
Several features are in beta testing and will be available in the next release soon. You are welcome to discuss them with us in the issues.
The system is currently under rapid iterative development. Some APIs or CLIs may be broken. Please go to Wiki for more details
If your want to join in our development team, please contact huaizhen001 @ e.ntu.edu.sg
The below figures illusrates the web interface of our system and overall workflow.
| Web frontend | Workflow |
|---|---|
tvm Python module(Optional)# install modelci from GitHub
pip install git+https://github.com/cap-ntu/ML-Model-CI.git@master
Once you have installed, make sure the docker daemon is running, then you can start MLModelCI service on a leader server by:
modelci service init
Or stop the service by:
modelci service stop
docker pull mlmodelci/mlmodelci:cpu
Start basic services by Docker Compose:
docker-compose -f ML-Model-CI/docker/docker-compose-cpu-modelhub.yml up -d
Stop the services by:
docker-compose -f ML-Model-CI/docker/docker-compose-cpu-modelhub.yml down
docker pull mlmodelci/mlmodelci:cuda10.2-cudnn8
Start basic services by Docker Compose:
docker-compose -f ML-Model-CI/docker/docker-compose-gpu-modelhub.yml up -d
Stop the services by:
docker-compose -f ML-Model-CI/docker/docker-compose-gpu-modelhub.yml down
We provide three options for users to use MLModelCI: CLI, Running Programmatically and Web interface
# publish a model to the system
modelci@modelci-PC:~$ modelci modelhub publish -f example/resnet50.yml
{'data': {'id': ['60746e4bc3d5598e0e7a786d']}, 'status': True}
Please refer to WIKI for more CLI options.
# utilize the convert function
from modelci.hub.converter import convert
from modelci.types.bo import IOShape
# the system can trigger the function automaticlly
# users can call the function individually
convert(
'',
src_framework='pytorch',
dst_framework='onnx',
save_path='',
inputs=[IOShape([-1, 3, 224, 224], dtype=float)],
outputs=[IOShape([-1, 1000], dtype=float)],
opset=11)
If you have installed MLModelCI via pip, you should start the frontend service manually.
# Navigate to the frontend folder
cd frontend
# Install dependencies
yarn install
# Start the frontend
yarn start
The frontend will start on
After the Quick Start, we provide detailed tutorials for users to understand our system.
MLModelCI welcomes your contributions! Please refer to here to get start.
If you use MLModelCI in your work or use any functions published in MLModelCI, we would appreciate if you could cite:
@inproceedings{10.1145/3394171.3414535,
author = {Zhang, Huaizheng and Li, Yuanming and Huang, Yizheng and Wen, Yonggang and Yin, Jianxiong and Guan, Kyle},
title = {MLModelCI: An Automatic Cloud Platform for Efficient MLaaS},
year = {2020},
url = {https://doi.org/10.1145/3394171.3414535},
doi = {10.1145/3394171.3414535},
booktitle = {Proceedings of the 28th ACM International Conference on Multimedia},
pages = {4453–4456},
numpages = {4},
location = {Seattle, WA, USA},
series = {MM '20}
}
Please feel free to contact our team if you meet any problem when using this source code. We are glad to upgrade the code meet to your requirements if it is reasonable.
We also open to collaboration based on this elementary system and research idea.
huaizhen001 AT e.ntu.edu.sg
…
暂无开放 Issues,或尚未同步最近议题。