Spaces:
Sleeping
Sleeping
legend1234
commited on
Commit
•
438a6f5
1
Parent(s):
e9f281b
Use relative path for joblib files
Browse files
app.py
CHANGED
@@ -16,10 +16,10 @@ from streamlit_ketcher import st_ketcher
|
|
16 |
|
17 |
# Load the pre-trained model and feature scaler
|
18 |
model = joblib.load(
|
19 |
-
"
|
20 |
)
|
21 |
scaler = joblib.load(
|
22 |
-
"
|
23 |
)
|
24 |
|
25 |
|
|
|
16 |
|
17 |
# Load the pre-trained model and feature scaler
|
18 |
model = joblib.load(
|
19 |
+
"pre_trained/b3clf_knn_kmeans_SMOTE.joblib"
|
20 |
)
|
21 |
scaler = joblib.load(
|
22 |
+
"pre_trained/b3clf_scaler.joblib"
|
23 |
)
|
24 |
|
25 |
|