├── Dataset └── Liver_data.csv ├── Images ├── Liver.jpg ├── Liver_Screenshot.png ├── gif.gif ├── gif1.gif ├── liver2.jpg └── screenshot.png ├── Liver.ipynb ├── Liver.pkl ├── Liver.py ├── Liver2.pkl ├── Procfile ├── README.md ├── app.py ├── requirements.txt ├── static ├── dr.gif └── yes.webp └── templates ├── index.html └── result.html /Dataset/Liver_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Dataset/Liver_data.csv -------------------------------------------------------------------------------- /Images/Liver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Images/Liver.jpg -------------------------------------------------------------------------------- /Images/Liver_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Images/Liver_Screenshot.png -------------------------------------------------------------------------------- /Images/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Images/gif.gif -------------------------------------------------------------------------------- /Images/gif1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Images/gif1.gif -------------------------------------------------------------------------------- /Images/liver2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Images/liver2.jpg -------------------------------------------------------------------------------- /Images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Images/screenshot.png -------------------------------------------------------------------------------- /Liver.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Liver.ipynb -------------------------------------------------------------------------------- /Liver.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Liver.pkl -------------------------------------------------------------------------------- /Liver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Liver.py -------------------------------------------------------------------------------- /Liver2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/Liver2.pkl -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/dr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/static/dr.gif -------------------------------------------------------------------------------- /static/yes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/static/yes.webp -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Liver-Disease-Prediction-Project/HEAD/templates/result.html --------------------------------------------------------------------------------