prabinpanta0 commited on
Commit
7f2b64a
1 Parent(s): 64d77b1

Add trained machine learning models

Browse files
cross_validation_lightgbm_model.keras DELETED
Binary file (2.48 kB)
 
cross_validation_logistic_regression_model.keras DELETED
Binary file (2.5 kB)
 
cross_validation_random_forest_model.keras DELETED
Binary file (2.49 kB)
 
k_nearest_model.keras DELETED
Binary file (2.45 kB)
 
logistic_regression_model.keras DELETED
Binary file (2.47 kB)
 
model_K_nearest.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e15a22303124e61c420d6bc55c2fcad2579b3f0464f81e1e0dc1a68eeacf3f50
3
+ size 2024182
model_Logistic_Regression.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd36d3fbb544d8e282971573a23d2e857149cde3637560bd50ec97e88eb20d68
3
+ size 1359
model_RandomForestClassifier.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f8835bc58c3a5ca872837e8621f53c5ddbeb6b6ecd8c952604beac2b18fe4b2
3
+ size 31565401
model_crossval_lightgbm.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e57758c8a317d431a7fee1507a88094718f2e119c3c7de03dad1b9f808eaf76b
3
+ size 345420
model_crossval_logistic_regression.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd36d3fbb544d8e282971573a23d2e857149cde3637560bd50ec97e88eb20d68
3
+ size 1359
model_crossval_random_forest.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f8835bc58c3a5ca872837e8621f53c5ddbeb6b6ecd8c952604beac2b18fe4b2
3
+ size 31565401
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", "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}}}
 
1
+ {"model_id": "prabinpanta0/Patient-Readmission-Prediction", "model_type": "sequence-classification", "library": {"random_forest": "scikit-learn", "logistic_regression": "scikit-learn", "k_nearest": "scikit-learn", "svc": "scikit-learn", "naive_bayes": "scikit-learn", "neural_network": "keras", "cross_validation_random_forest": "scikit-learn", "cross_validation_logistic_regression": "scikit-learn", "cross_validation_lightgbm": "LightGBM"}, "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": "model_RandomForestClassifier.pkl", "logistic_regression": "model_Logistic_Regression.pkl", "k_nearest": "model_K_nearest.pkl", "svc": "model_svc.pkl", "naive_bayes": "model_naive_bayes.pkl", "neural_network": "neural_network.keras", "cross_validation_random_forest": "model_rf.pkl", "cross_validation_logistic_regression": "model_lr.pkl", "cross_validation_lightgbm": "model_lgbm.pkl"}, "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}}}
model_naive_bayes.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d75b57e5f65d9adde8259e3b377a821531fdd3c27e81333ad33e5829cea3701
3
+ size 1415
model_svc.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92864b5b4cbbfbe5af24fd8169a7491d27278071bb35bf07d99d9b2f4077f001
3
+ size 647355
naive_bayes_model.keras DELETED
Binary file (2.46 kB)
 
neural_network.keras ADDED
Binary file (134 kB). View file
 
neural_network_model.keras DELETED
Binary file (133 kB)
 
random_forest_model.keras DELETED
Binary file (2.48 kB)
 
svc_model.keras DELETED
Binary file (2.44 kB)