katyan010 commited on
Commit
5f44bc6
·
1 Parent(s): 733362a
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -20,7 +20,7 @@ model_label = st.sidebar.selectbox(
20
  "Hugging Face модель",
21
  options=list(config.MODEL_CATALOG.keys()),
22
  index=0,
23
- help="Например, YOLO модель для детекции логотипов",
24
  )
25
  model_id = config.MODEL_CATALOG[model_label]
26
  threshold = st.sidebar.slider(
@@ -33,7 +33,7 @@ threshold = st.sidebar.slider(
33
 
34
  st.title(config.PAGE_ICON + " " + config.PAGE_TITLE)
35
  st.write(
36
- "Загрузите изображение. Модель найдёт логотипы "
37
  "и отрисует bounding boxes."
38
  )
39
 
 
20
  "Hugging Face модель",
21
  options=list(config.MODEL_CATALOG.keys()),
22
  index=0,
23
+ help="Например, YOLO модель для детекции",
24
  )
25
  model_id = config.MODEL_CATALOG[model_label]
26
  threshold = st.sidebar.slider(
 
33
 
34
  st.title(config.PAGE_ICON + " " + config.PAGE_TITLE)
35
  st.write(
36
+ "Загрузите изображение. Модель найдёт объекты "
37
  "и отрисует bounding boxes."
38
  )
39