Apex-X commited on
Commit
1fe0675
·
verified ·
1 Parent(s): 1c4d0c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = '/path/to/your/model/sketch_recognition_model_cnn.h5'
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