This repo contains code about heart disease prediction system using Machine Learning and website development using Django
Models | Accuracy |
---|---|
Decision Tree | 75.63 % |
Random Forest | 74.78 % |
SVM | 82.35 % |
KNN | 80.67 % |
Multilayer Perceptron | 85.71 % |
Inside the website Folder Steps to run:
- create a virtual environment using:
conda create --name <name_of_env> django - Activate the above environment:
activate <name_of_env> - run:
python -r requirements.txt - cd into the website_work directory.
- run:
python manage.py migrate
python manage.py makemigrations
python manage.py migrate
python manage.py runserver