├── .github └── workflows │ └── heroku.yml ├── .gitignore ├── Procfile ├── README.md ├── core ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── predictor ├── __init__.py ├── apps.py ├── forms.py ├── urls.py └── views.py ├── requirements.txt ├── runtime.txt ├── static ├── Breast_train.csv ├── Diabetes_XTrain.csv ├── Diabetes_YTrain.csv ├── Heart_train.csv └── css │ └── style.css └── templates ├── 404.html ├── base.html ├── breast.html ├── diabetes.html ├── heart.html ├── home.html └── navbar.html /.github/workflows/heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/.github/workflows/heroku.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn core.wsgi 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/manage.py -------------------------------------------------------------------------------- /predictor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /predictor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/predictor/apps.py -------------------------------------------------------------------------------- /predictor/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/predictor/forms.py -------------------------------------------------------------------------------- /predictor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/predictor/urls.py -------------------------------------------------------------------------------- /predictor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/predictor/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.10 2 | -------------------------------------------------------------------------------- /static/Breast_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/static/Breast_train.csv -------------------------------------------------------------------------------- /static/Diabetes_XTrain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/static/Diabetes_XTrain.csv -------------------------------------------------------------------------------- /static/Diabetes_YTrain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/static/Diabetes_YTrain.csv -------------------------------------------------------------------------------- /static/Heart_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/static/Heart_train.csv -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/breast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/breast.html -------------------------------------------------------------------------------- /templates/diabetes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/diabetes.html -------------------------------------------------------------------------------- /templates/heart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/heart.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theArjun/disease-predictor/HEAD/templates/navbar.html --------------------------------------------------------------------------------