Tej3 commited on
Commit
9a6115d
1 Parent(s): 92f6568

fixing path errors

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ Models = ['Resnet_enc','Unet','Densenet_enc']
72
  for location in location_types:
73
  for model in Models:
74
  ckpt_dir = f"{CWD}/ckpt/{CKPT_FILE_NAMES[location][model]}"
75
- load_model(CKPT_FILE_NAMES[location][model], MODEL_CLASSES[location][model])
76
 
77
 
78
 
 
72
  for location in location_types:
73
  for model in Models:
74
  ckpt_dir = f"{CWD}/ckpt/{CKPT_FILE_NAMES[location][model]}"
75
+ load_model(ckpt_dir, MODEL_CLASSES[location][model])
76
 
77
 
78