Skip to content

kennethleungty/End-to-End-AutoML-Insurance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

End-to-End AutoML with H2O, MLflow, FastAPI, and Streamlit for Insurance Cross-Sell

Links to articles on this project:

Overview - Business Aspect

  • Cross-selling in insurance is the practice of promoting products that are complementary to the policies that existing customers already own.
  • The goal of cross-selling is to create a win-win situation where customers can obtain comprehensive protection at a lower bundled cost, while insurers can boost revenue through enhanced policy conversions.
  • The aim of this project is to build a predictive ML pipeline (on the Health Insurance Cross-Sell dataset) to identify health insurance customers who are interested in purchasing additional vehicle insurance, in a bid to make cross-sell campaigns more efficient and targeted.

Overview - Technical Aspect

  • Traditional machine learning (ML) model development is time-consuming, resource-intensive, and requires a high degree of technical expertise along with many lines of code. 
  • This model development process has been accelerated with the advent of automated machine learning (AutoML), allowing teams to generate performant and scalable models efficiently.
  • An important thing to remember is that there are multiple components in a production-ready ML system beyond model development that requires plenty of work.
  • In this comprehensive guide, we explore how to set up, train, and serve an ML system using the powerful capabilities of H2O AutoML, MLflow, FastAPI, and Streamlit to build an insurance cross-sell prediction model.

Objective

  • Make cross-selling more efficient and targeted by building a predictive ML pipeline to identify health insurance customers interested in purchasing additional vehicle insurance.

Pipeline Components

  • Data Acquisition and Preprocessing
  • H2O AutoML training with MLflow tracking
  • Deployment of best H2O model via FastAPI
  • Streamlit user interface to post test data to FastAPI endpoint

UI Demo

alt text


Project Files and Folders

  • /backend - Folder to contain the files needed to setup the backend aspects of project (i.e. H2O ML model and FastAPI instance)
    • /data - Raw data, processed data and output data (predictions JSON file)
    • /mlruns - Artifacts from ML training experiments
    • /utils - Folder containing Python scripts with helper functions
    • main.py - Python script for selecting best H2O model and deploying (and serving) it as FastAPI endpoint. Run with this command: uvicorn main:app --host 0.0.0.0 --port 8000
    • Dockerfile - Dockerfile to build backend service
    • train.py - Python script for the execution of H2O AutoML training with MLflow tracking. Run with this command: python train.py --target 'Response'
  • /frontend - Folder containining the frontend user interface (UI) aspect of project (i.e. Streamlit)
    • app.py - Python script for the Streamlit web app, connected with FastAPI endpoint for model inference. Run in CLI with streamlit run ui.py
    • Dockerfile - Dockerfile to build frontend service
  • /demo - Folder containing gif and webm of Streamlit UI demo
  • /notebooks - Folder containing Jupyter notebooks for EDA, XGBoost baseline, and H2O AutoML experiments
    • 01_EDA_and_Data_PreProcessing.ipynb - Notebook detailing the data acquisition, data cleaning and feature engineering steps
    • 02_XGBoost_Baseline_Model.ipynb - Notebook running the XGBoost baseline model for subsequent comparison
    • 03_H2O_AutoML_with_MLflow.ipynb - Notebook showing the full H2O AutoML training and MLflow tracking process, along with model inference to get predictions
  • /submissions - Folder containing CSV files for Kaggle submission to retrieve model accuracy scores

References

About

An End-to-End Implementation of AutoML with H2O, MLflow, FastAPI, and Streamlit for Insurance Cross-Sell

Topics

Resources

Stars

Watchers

Forks

Languages