prabinpanta0 commited on
Commit
c0243eb
1 Parent(s): 53bdcac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +97 -8
README.md CHANGED
@@ -9,18 +9,107 @@ tags:
9
  - healthcare
10
  - sklearn
11
  - keras
12
- language:
 
13
  - en
14
  model_type: classification
15
  task: patient-readmission-prediction
16
  app_mode: standalone
17
  frameworks:
18
- - scikit-learn
19
- - tensorflow
20
  metrics:
21
- - accuracy
22
- - precision
23
- - recall
24
- - f1
 
25
  ---
26
- # Hospital Patient Readmission Predection
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  - healthcare
10
  - sklearn
11
  - keras
12
+ - LightGBM
13
+ language:
14
  - en
15
  model_type: classification
16
  task: patient-readmission-prediction
17
  app_mode: standalone
18
  frameworks:
19
+ - scikit-learn
20
+ - tensorflow
21
  metrics:
22
+ - accuracy
23
+ - precision
24
+ - recall
25
+ - f1
26
+ - roc_auc
27
  ---
28
+ # Hospital Patient Readmission Predection
29
+
30
+
31
+ ```json
32
+ {
33
+ "model_id": "prabinpanta0/Patient-Readmission-Prediction",
34
+ "model_type": "sequence-classification",
35
+ "library": {
36
+ "random_forest": "scikit-learn",
37
+ "logistic_regression": "scikit-learn",
38
+ "k_nearest": "scikit-learn",
39
+ "svc": "scikit-learn",
40
+ "naive_bayes": "scikit-learn",
41
+ "neural_network": "keras",
42
+ "cross_validation_random_forest": "scikit-learn",
43
+ "cross_validation_logistic_regression": "scikit-learn",
44
+ "cross_validation_lightgbm": "LightGBM"
45
+ },
46
+ "model_architectures": {
47
+ "random_forest": "RandomForestClassifier",
48
+ "logistic_regression": "LogisticRegression",
49
+ "k_nearest": "KNeighborsClassifier",
50
+ "svc": "SVC",
51
+ "naive_bayes": "MultinomialNB",
52
+ "neural_network": "NeuralNetwork",
53
+ "cross_validation_random_forest": "RandomForestClassifier",
54
+ "cross_validation_logistic_regression": "LogisticRegression",
55
+ "cross_validation_lightgbm": "LGBMClassifier"
56
+ },
57
+ "model_paths": {
58
+ "random_forest": "model_RandomForestClassifier.pkl",
59
+ "logistic_regression": "model_Logistic_Regression.pkl",
60
+ "k_nearest": "model_K_nearest.pkl",
61
+ "svc": "model_svc.pkl",
62
+ "naive_bayes": "model_naive_bayes.pkl",
63
+ "neural_network": "neural_network.keras",
64
+ "cross_validation_random_forest": "model_rf.pkl",
65
+ "cross_validation_logistic_regression": "model_lr.pkl",
66
+ "cross_validation_lightgbm": "model_lgbm.pkl"
67
+ },
68
+ "model_classes": {
69
+ "random_forest": "RandomForestClassifier",
70
+ "logistic_regression": "LogisticRegression",
71
+ "k_nearest": "KNeighborsClassifier",
72
+ "svc": "SVC",
73
+ "naive_bayes": "MultinomialNB",
74
+ "neural_network": "NeuralNetwork",
75
+ "cross_validation_random_forest": "RandomForestClassifier",
76
+ "cross_validation_logistic_regression": "LogisticRegression"
77
+ },
78
+ "model_configs": {
79
+ "random_forest": {
80
+ "n_estimators": 100,
81
+ "max_depth": 5
82
+ },
83
+ "logistic_regression": {
84
+ "C": 1,
85
+ "max_iter": 1000
86
+ },
87
+ "k_nearest": {
88
+ "n_neighbors": 5
89
+ },
90
+ "svc": {
91
+ "C": 1,
92
+ "kernel": "linear"
93
+ },
94
+ "naive_bayes": {
95
+ "alpha": 1
96
+ },
97
+ "neural_network": {
98
+ "input_dim": 10,
99
+ "output_dim": 1,
100
+ "hidden_dim": 10
101
+ },
102
+ "cross_validation_random_forest": {
103
+ "n_estimators": 100,
104
+ "max_depth": 5
105
+ },
106
+ "cross_validation_logistic_regression": {
107
+ "C": 1,
108
+ "max_iter": 1000
109
+ },
110
+ "cross_validation_lightgbm": {
111
+ "random_state": 42
112
+ }
113
+ }
114
+ }
115
+ ```