├── .idea ├── .gitignore ├── PR2.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── app.py ├── defuzzification.py ├── final_result.py ├── fuzzification.py ├── inference.py ├── requirements.txt ├── rules.fcl ├── static ├── css │ └── main.css ├── font │ └── Sansation-Light.ttf └── image │ └── health_care.jpg └── templates ├── index.html └── result.html /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/PR2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/PR2.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/app.py -------------------------------------------------------------------------------- /defuzzification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/defuzzification.py -------------------------------------------------------------------------------- /final_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/final_result.py -------------------------------------------------------------------------------- /fuzzification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/fuzzification.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/inference.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask==2.0.2 -------------------------------------------------------------------------------- /rules.fcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/rules.fcl -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/font/Sansation-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/static/font/Sansation-Light.ttf -------------------------------------------------------------------------------- /static/image/health_care.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/static/image/health_care.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maedemir/Fuzzy-Expert-System-for-Heart-Disease-Diagnosis/HEAD/templates/result.html --------------------------------------------------------------------------------