Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import joblib
|
|
4 |
# Function to load your model (adjust the path and method if needed)
|
5 |
def load_model():
|
6 |
# This path is relative to the root of your Hugging Face Space
|
7 |
-
model_path = "./
|
8 |
model = joblib.load(model_path)
|
9 |
return model
|
10 |
|
|
|
4 |
# Function to load your model (adjust the path and method if needed)
|
5 |
def load_model():
|
6 |
# This path is relative to the root of your Hugging Face Space
|
7 |
+
model_path = "./random_forest_model_3labels2.joblib"
|
8 |
model = joblib.load(model_path)
|
9 |
return model
|
10 |
|