Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -36,9 +36,9 @@ The prediction helps in identifying students at risk early, allowing for timely
|
|
36 |
import joblib
|
37 |
|
38 |
# Load the models
|
39 |
-
decision_tree = joblib.load('
|
40 |
-
logistic_regression = joblib.load('
|
41 |
-
random_forest = joblib.load('
|
42 |
|
43 |
# Define a dictionary of models with their names, actual models, and types
|
44 |
models = {
|
|
|
36 |
import joblib
|
37 |
|
38 |
# Load the models
|
39 |
+
decision_tree = joblib.load('decision_tree_model.joblib')
|
40 |
+
logistic_regression = joblib.load('logistic_regression_model.joblib')
|
41 |
+
random_forest = joblib.load('random_forest_model.joblib')
|
42 |
|
43 |
# Define a dictionary of models with their names, actual models, and types
|
44 |
models = {
|