Brasd99 commited on
Commit
74148c3
1 Parent(s): 6a04f3d

Changed labels

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -331,10 +331,10 @@ st.image(APP_LOGO, use_column_width=True)
331
  st.write(APP_DESCRIPTION)
332
 
333
  access_token = st.text_input("Your VK API access token", help="You can obtain your token from https://vkhost.github.io/")
334
- afl_url = st.text_input("AFL url", help="Example: https://afl.ru/football/afl-moscow-8x8/afl-cup-krasnaya-presnya-3097/matches/463676")
335
 
336
  face_det_tresh = st.slider("face_det_tresh:", 0.0, 1.0, FACE_DET_TRESH, 0.01, help="Adjust the threshold value for face detection.")
337
- face_dist_tresh = st.slider("face_dist_tresh:", 0.0, 1.0, FACE_DIST_TRESH, 0.01, help="Adjust the threshold to determine the minimum acceptable distance between faces.")
338
 
339
  button_clicked = st.button("Process")
340
 
 
331
  st.write(APP_DESCRIPTION)
332
 
333
  access_token = st.text_input("Your VK API access token", help="You can obtain your token from https://vkhost.github.io/")
334
+ afl_url = st.text_input("AFL match url", help="Example: https://afl.ru/football/afl-moscow-8x8/afl-cup-krasnaya-presnya-3097/matches/463676")
335
 
336
  face_det_tresh = st.slider("face_det_tresh:", 0.0, 1.0, FACE_DET_TRESH, 0.01, help="Adjust the threshold value for face detection.")
337
+ face_dist_tresh = st.slider("face_dist_tresh:", 0.0, 1.0, FACE_DIST_TRESH, 0.01, help="Adjust the threshold to determine the maximum acceptable distance between faces.")
338
 
339
  button_clicked = st.button("Process")
340