ch-tseng commited on
Commit
0f897c1
·
1 Parent(s): a3f3e32
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -59,7 +59,8 @@ confidence = float(st.sidebar.slider(
59
 
60
  model_path = ""
61
  if model_type:
62
- model_path = Path(config.DETECTION_MODEL_DIR, str(model_type))
 
63
  else:
64
  st.error("Please Select Model in Sidebar")
65
 
 
59
 
60
  model_path = ""
61
  if model_type:
62
+ #model_path = Path(config.DETECTION_MODEL_DIR, str(model_type))
63
+ model_path = config.DETECTION_MODEL_DIR
64
  else:
65
  st.error("Please Select Model in Sidebar")
66