a b/README.md
1
This repository presents the implementation of different machine learning architectures to determine the efficacy of the Acute Physiology andChronic Health Evaluation (APACHE) IV score as well as the patient characteristics that comprise it to predict the discharge destination for critically ill patients within 24 hours of ICU admission. 
2
3
--------------------------------------
4
5
## Overall Architecture
6
![](/Images/Architecture.jpg)
7
8
--------------------------------------
9
10
This repository contains the following components:
11
12
* Handling Missing Data
13
  * Missingness indicator
14
  * MICE Imputation
15
16
* Handling Class Imbalance
17
  * Class_weight
18
  * SMOTE Oversampling
19
  * SMOTEENN 
20
  * SMOTE-NC
21
  * No-adjustment
22
23
* Predictive Models
24
  * Logistic Regression
25
  * Random Forest
26
  * Support Vector Machines
27
  * K-Nearest Neighbours
28
  * XGBoost
29
  * AdaBoost
30
  * ExtraTrees
31
  * Deep Neural Networks
32
  * Hierarchical Classifiers
33
  * Staked Ensemble Models
34
  * Mix Clustering-Classification Models
35
36