├── Dataset ├── cancer.csv ├── heart.csv ├── indian_liver_patient.csv └── kidney_disease.csv ├── Notebooks ├── Heart.ipynb ├── Liver.ipynb ├── cancer.ipynb ├── diabetes.py └── kidney.ipynb ├── Procfile ├── README.md ├── app.py ├── models ├── cancer.pkl ├── diabetes.pkl ├── heart.pkl ├── kidney.pkl └── liver.pkl ├── requirements.txt ├── static ├── cancer.jpeg ├── diabetes.jpg ├── heart.jpeg ├── home-image.jpeg ├── kidney.jpg ├── liver.jpg ├── logo.png ├── main.js └── style.css └── templates ├── cancer.html ├── diabetes.html ├── heart.html ├── index.html ├── kidney.html ├── liver.html └── predict.html /Dataset/cancer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Dataset/cancer.csv -------------------------------------------------------------------------------- /Dataset/heart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Dataset/heart.csv -------------------------------------------------------------------------------- /Dataset/indian_liver_patient.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Dataset/indian_liver_patient.csv -------------------------------------------------------------------------------- /Dataset/kidney_disease.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Dataset/kidney_disease.csv -------------------------------------------------------------------------------- /Notebooks/Heart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Notebooks/Heart.ipynb -------------------------------------------------------------------------------- /Notebooks/Liver.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Notebooks/Liver.ipynb -------------------------------------------------------------------------------- /Notebooks/cancer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Notebooks/cancer.ipynb -------------------------------------------------------------------------------- /Notebooks/diabetes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Notebooks/diabetes.py -------------------------------------------------------------------------------- /Notebooks/kidney.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/Notebooks/kidney.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/app.py -------------------------------------------------------------------------------- /models/cancer.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/models/cancer.pkl -------------------------------------------------------------------------------- /models/diabetes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/models/diabetes.pkl -------------------------------------------------------------------------------- /models/heart.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/models/heart.pkl -------------------------------------------------------------------------------- /models/kidney.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/models/kidney.pkl -------------------------------------------------------------------------------- /models/liver.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/models/liver.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/cancer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/cancer.jpeg -------------------------------------------------------------------------------- /static/diabetes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/diabetes.jpg -------------------------------------------------------------------------------- /static/heart.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/heart.jpeg -------------------------------------------------------------------------------- /static/home-image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/home-image.jpeg -------------------------------------------------------------------------------- /static/kidney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/kidney.jpg -------------------------------------------------------------------------------- /static/liver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/liver.jpg -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/main.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/cancer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/cancer.html -------------------------------------------------------------------------------- /templates/diabetes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/diabetes.html -------------------------------------------------------------------------------- /templates/heart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/heart.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/kidney.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/kidney.html -------------------------------------------------------------------------------- /templates/liver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/liver.html -------------------------------------------------------------------------------- /templates/predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishabh062/multiple-disease-prediction/HEAD/templates/predict.html --------------------------------------------------------------------------------