Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ labels = {name: index for index, name in enumerate(classes)}
|
|
15 |
num_classes = len(classes)
|
16 |
|
17 |
# Load the model - update this path to the actual location of your model file
|
18 |
-
model_path = '/
|
19 |
model = load_model(model_path)
|
20 |
|
21 |
# Predict function for interface
|
|
|
15 |
num_classes = len(classes)
|
16 |
|
17 |
# Load the model - update this path to the actual location of your model file
|
18 |
+
model_path = '/home/user/models/sketch_recognition_model_cnn.h5' # Change this
|
19 |
model = load_model(model_path)
|
20 |
|
21 |
# Predict function for interface
|