prabinpanta0
commited on
Commit
•
64d77b1
1
Parent(s):
c6cd1d8
Updated the Model
Browse files- .gitattributes +1 -0
- cross_validation_lightgbm_model.keras +0 -0
- cross_validation_logistic_regression_model.keras +0 -0
- cross_validation_random_forest_model.keras +0 -0
- k_nearest_model.joblib +0 -3
- k_nearest_model.keras +0 -0
- logistic_regression_model.joblib +0 -3
- logistic_regression_model.keras +0 -0
- model_hub.json +1 -1
- naive_bayes_model.joblib +0 -3
- naive_bayes_model.keras +0 -0
- neural_network_model.keras +0 -0
- random_forest_model.joblib +0 -3
- random_forest_model.keras +0 -0
- svc_model.joblib +0 -3
- svc_model.keras +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
*.largefile filter=lfs diff=lfs merge=lfs -text
|
cross_validation_lightgbm_model.keras
ADDED
Binary file (2.48 kB). View file
|
|
cross_validation_logistic_regression_model.keras
ADDED
Binary file (2.5 kB). View file
|
|
cross_validation_random_forest_model.keras
ADDED
Binary file (2.49 kB). View file
|
|
k_nearest_model.joblib
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:9ac51e5b965a29dfc7433784cc90925ba1c95242d4f2738e8565da3b13c4ab6b
|
3 |
-
size 2024214
|
|
|
|
|
|
|
|
k_nearest_model.keras
ADDED
Binary file (2.45 kB). View file
|
|
logistic_regression_model.joblib
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:dd36d3fbb544d8e282971573a23d2e857149cde3637560bd50ec97e88eb20d68
|
3 |
-
size 1359
|
|
|
|
|
|
|
|
logistic_regression_model.keras
ADDED
Binary file (2.47 kB). View file
|
|
model_hub.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"model_id": "prabinpanta0/Patient-Readmission-Prediction", "model_type": "sequence-classification", "model_architectures": {"random_forest": "RandomForestClassifier", "logistic_regression": "LogisticRegression", "k_nearest": "KNeighborsClassifier", "svc": "SVC", "naive_bayes": "MultinomialNB", "neural_network": "NeuralNetwork"}, "model_paths": {"random_forest": "
|
|
|
1 |
+
{"model_id": "prabinpanta0/Patient-Readmission-Prediction", "model_type": "sequence-classification", "model_architectures": {"random_forest": "RandomForestClassifier", "logistic_regression": "LogisticRegression", "k_nearest": "KNeighborsClassifier", "svc": "SVC", "naive_bayes": "MultinomialNB", "neural_network": "NeuralNetwork", "cross_validation_random_forest": "RandomForestClassifier", "cross_validation_logistic_regression": "LogisticRegression", "cross_validation_lightgbm": "LGBMClassifier"}, "model_paths": {"random_forest": "Patient-Readmission-Prediction/random_forest_model.keras", "logistic_regression": "Patient-Readmission-Prediction/logistic_regression_model.keras", "k_nearest": "Patient-Readmission-Prediction/k_nearest_model.keras", "svc": "Patient-Readmission-Prediction/svc_model.keras", "naive_bayes": "Patient-Readmission-Prediction/naive_bayes_model.keras", "neural_network": "Patient-Readmission-Prediction/neural_network_model.keras", "cross_validation_random_forest": "Patient-Readmission-Prediction/cross_validation_random_forest_model.keras", "cross_validation_logistic_regression": "Patient-Readmission-Prediction/cross_validation_logistic_regression_model.keras", "cross_validation_lightgbm": "Patient-Readmission-Prediction/cross_validation_lightgbm_model.keras"}, "model_classes": {"random_forest": "RandomForestClassifier", "logistic_regression": "LogisticRegression", "k_nearest": "KNeighborsClassifier", "svc": "SVC", "naive_bayes": "MultinomialNB", "neural_network": "NeuralNetwork", "cross_validation_random_forest": "RandomForestClassifier", "cross_validation_logistic_regression": "LogisticRegression"}, "model_configs": {"random_forest": {"n_estimators": 100, "max_depth": 5}, "logistic_regression": {"C": 1.0, "max_iter": 1000}, "k_nearest": {"n_neighbors": 5}, "svc": {"C": 1.0, "kernel": "linear"}, "naive_bayes": {"alpha": 1.0}, "neural_network": {"input_dim": 10, "output_dim": 1, "hidden_dim": 10}, "cross_validation_random_forest": {"n_estimators": 100, "max_depth": 5}, "cross_validation_logistic_regression": {"C": 1.0, "max_iter": 1000}, "cross_validation_lightgbm": {"random_state": 42}}}
|
naive_bayes_model.joblib
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:c34399d5ad31062eefb25939aac5d558709c4196b2423984fafea0e6bc4d3840
|
3 |
-
size 1463
|
|
|
|
|
|
|
|
naive_bayes_model.keras
ADDED
Binary file (2.46 kB). View file
|
|
neural_network_model.keras
CHANGED
Binary files a/neural_network_model.keras and b/neural_network_model.keras differ
|
|
random_forest_model.joblib
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:14f9fde7bdd45ec3a06df7270821b7ab3fd88dc968bd10e51d3e2605ab108f65
|
3 |
-
size 31565465
|
|
|
|
|
|
|
|
random_forest_model.keras
ADDED
Binary file (2.48 kB). View file
|
|
svc_model.joblib
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:34b3b2519ec7dc3f85cfaee40446cf5f68cd845534fef0dd550b15537627b230
|
3 |
-
size 647387
|
|
|
|
|
|
|
|
svc_model.keras
ADDED
Binary file (2.44 kB). View file
|
|