A streamlit app that uses a machine learning model to predict disease based on list of symptoms
This repository contains three ways to setup the environments and run the app.
- If you have docker install, just run
docker run -p 8501:8501 guillechuma/disease_pred_streamlit
- See the app at https://localhost:8501
- Run this command
conda env create -f environment.yml
- Run this command inside python environment
pip install -r requirements.txt
- Clone repository locally
- Create and activate conda/python environment as specified above.
- inside the project folder, run
streamlit run app.py
Enjoy!
https://www.kaggle.com/datasets/itachi9604/disease-symptom-description-dataset
Guillermo Chumaceiro