Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ loaded_feature_extractor = load_model("feature_extractor_model_5_8")
|
|
19 |
# Load the SVM model
|
20 |
import pickle
|
21 |
|
22 |
-
with open("
|
23 |
loaded_svm_model = pickle.load(file)
|
24 |
|
25 |
# Load the mineral detection model
|
|
|
19 |
# Load the SVM model
|
20 |
import pickle
|
21 |
|
22 |
+
with open("svm_model_probablity_5_8.pkl", 'rb') as file:
|
23 |
loaded_svm_model = pickle.load(file)
|
24 |
|
25 |
# Load the mineral detection model
|