ch-tseng commited on
Commit
9e66fa1
·
1 Parent(s): 2a77066
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -85,7 +85,7 @@ if qmodel not in models_list:
85
 
86
 
87
  # main page heading
88
- st.title( model_info[qmodel] )
89
 
90
  # sidebar
91
  st.sidebar.header("Model Config")
@@ -102,7 +102,7 @@ confidence = float(st.sidebar.slider(
102
  "Select Model Confidence", 30, 100, 50)) / 100
103
 
104
  if model_type:
105
- #model_path = Path(config.DETECTION_MODEL_DIR, str(model_type))
106
  model_path = model_info[model_type]
107
 
108
  try:
 
85
 
86
 
87
  # main page heading
88
+ #st.title( model_info[qmodel] )
89
 
90
  # sidebar
91
  st.sidebar.header("Model Config")
 
102
  "Select Model Confidence", 30, 100, 50)) / 100
103
 
104
  if model_type:
105
+ st.header('{} Trial: Use your photo/video:blue[cool] :sunglasses:'.format(model_type))
106
  model_path = model_info[model_type]
107
 
108
  try: