├── .idea ├── Health-Insurance-Prediction-System.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Health Insurance Prediction System.pptx ├── Health insurence premium prediction.ipynb ├── Procfile ├── SRS_Health Insurance Prediction System.docx ├── SRS_Health Insurance Prediction System.pdf ├── UI,UX Design Health Insurance Prediction System.pdf ├── command.txt ├── insurance.csv ├── liner_model.pkl ├── main.py ├── proposal.doc ├── readme.md ├── requirements.txt ├── static ├── admin.png └── homepage.jpg └── templates ├── admin_dashboard.html ├── customer_dashboard.html ├── dashboard.html ├── home.html ├── index.html └── prediction.html /.idea/Health-Insurance-Prediction-System.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/.idea/Health-Insurance-Prediction-System.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Health Insurance Prediction System.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/Health Insurance Prediction System.pptx -------------------------------------------------------------------------------- /Health insurence premium prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/Health insurence premium prediction.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /SRS_Health Insurance Prediction System.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/SRS_Health Insurance Prediction System.docx -------------------------------------------------------------------------------- /SRS_Health Insurance Prediction System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/SRS_Health Insurance Prediction System.pdf -------------------------------------------------------------------------------- /UI,UX Design Health Insurance Prediction System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/UI,UX Design Health Insurance Prediction System.pdf -------------------------------------------------------------------------------- /command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/command.txt -------------------------------------------------------------------------------- /insurance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/insurance.csv -------------------------------------------------------------------------------- /liner_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/liner_model.pkl -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/main.py -------------------------------------------------------------------------------- /proposal.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/proposal.doc -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/static/admin.png -------------------------------------------------------------------------------- /static/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/static/homepage.jpg -------------------------------------------------------------------------------- /templates/admin_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/templates/admin_dashboard.html -------------------------------------------------------------------------------- /templates/customer_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/templates/customer_dashboard.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/prediction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DS-Popeye/Health-Insurance-Prediction-System/HEAD/templates/prediction.html --------------------------------------------------------------------------------