The processes are similar to that of Streamlit in my previous article.
- Exporting Machine Learning(ML) items
- Setting up environment
- Importing Machine Learning items from local PC
- Building the app Interface
- Setting up the backend to process inputs and display outputs
- Deployment
You have two ways in order to setup and run this project.
For manual installation, you need to have Python3 on your system. Then you can clone this repo and being at the repo's root :: friendly_web_interface_for_ML_models> ... follow the steps below:
Windows:
python -m venv venv; venv\Scripts\activate; python -m pip install -q --upgrade pip; python -m pip install -qr requirements.txt
Linux & MacOs:
python3 -m venv venv; source venv/bin/activate; python -m pip install -q --upgrade pip; python -m pip install -qr requirements.txt
NB: For MacOs users, please install Xcode if you have an issue.