Streamlit inference service deployment submodule for Udacity's Machine Learning Engineer Nanodegree program.
DISCLAIMER: THIS TOOL SHOULD NOT BE USED FOR MEDICAL DIAGNOSIS/REPLACE CONSULTING FROM A MEDICAL EXPERT AND SHOULD SERVE EDUCATIONAL PURPOSES ONLY.
This is a Chest X-Ray (CXR) classification API. Building on previous work of [1], the CovNet model for this ML project utilizes a pre-trained EfficientNet-b1 to extract features and a fine-tuned Fast.ai classifier to differentiate between infection classes (Normal, Viral Pneumonia, or COVID-19) with 95% test accuracy.
git clone https://github.com/codeamt/mle-capstone-deployment FastEfficientCovidnet
cd FastEfficientCovidnet
cd src
pip3 -r install requirements.txt
docker build -f Dockerfile -t app:latest .
From the src of the repo:
streamlit run app.py
docker run -p 8501:8501 app:latest
1 COVID-Net: A Tailored Deep Convolutional Neural Network Design for Detection of COVID-19 Cases from Chest X-Ray Image. L. Wang and A. Wong., 2020.