legend1234 commited on
Commit
438a6f5
1 Parent(s): e9f281b

Use relative path for joblib files

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- "/home/legend/Desktop/work/BBB_database/bbb_imbalanced_github/B3clf/b3clf/pre_trained/b3clf_knn_kmeans_SMOTE.joblib"
20
  )
21
  scaler = joblib.load(
22
- "/home/legend/Desktop/work/BBB_database/bbb_imbalanced_github/B3clf/b3clf/pre_trained/b3clf_scaler.joblib"
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