├── NB_model.pkl ├── README.md ├── SVM_model.pkl ├── app.py ├── logreg_model.pkl ├── rfc_model.pkl ├── sample.html └── templates └── index.html /NB_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/NB_model.pkl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Disease_predictor -------------------------------------------------------------------------------- /SVM_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/SVM_model.pkl -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/app.py -------------------------------------------------------------------------------- /logreg_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/logreg_model.pkl -------------------------------------------------------------------------------- /rfc_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/rfc_model.pkl -------------------------------------------------------------------------------- /sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/sample.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVaradharajan/Disease_predictor/HEAD/templates/index.html --------------------------------------------------------------------------------