khuyentran1401 / employee-future-prediction

Demo for Using GitHub Actions in MLOps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Employee Future Prediction

Motivation

In a data science team, it is common to continuously try to find a better model than the existing one in production. It is important to make sure the service doesn't break when the new model is deployed.

This project demonstrates how to use DagsHub and GitHub Actions to:

  • automatically test a pull request from a team member
  • merge a pull request when all tests passed
  • deploy the ML model to the existing service

Here is the summary of the workflow:

Experiment on DagsHub

After experimenting with different parameters using MLFlow and DagsHub, we choose a combinations of parameters that gives a better performance than the existing model in production and commit the code to Git.

Use GitHub Actions to Test Model

The first workflow named test_model.yaml automatically tests a new pull request, which can only be merged if all tests are passed.

Use GitHub Actions to Deploy Model After Merging

The second workflow named deploy_app.yaml automatically deploy the new model to the existing service after the pull request is merged.

.

About

Demo for Using GitHub Actions in MLOps


Languages

Language:Jupyter Notebook 92.3%Language:Python 7.5%Language:Makefile 0.1%Language:Procfile 0.0%