Brasd99 commited on
Commit
5bf37c5
1 Parent(s): e5a0373

Added more help descriptions

Browse files
Files changed (1) hide show
  1. app.py +2 -14
app.py CHANGED
@@ -326,20 +326,8 @@ st.set_page_config(page_title=APP_NAME)
326
  st.title(APP_NAME)
327
  st.write(APP_DESCRIPTION)
328
 
329
- access_token = st.text_input("Your VK API access token")
330
-
331
- description = "You can obtain your token from"
332
- link = "https://vkhost.github.io/"
333
-
334
- markdown_str = f"{description}: [{link}]({link})"
335
-
336
- st.markdown(markdown_str)
337
-
338
- afl_url = st.text_input("AFL url")
339
- description = "Example"
340
- link = "https://afl.ru/football/afl-moscow-8x8/afl-cup-krasnaya-presnya-3097/matches/463676"
341
- markdown_str = f"{description}: [{link}]({link})"
342
- st.markdown(markdown_str)
343
 
344
  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.')
345
  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.')
 
326
  st.title(APP_NAME)
327
  st.write(APP_DESCRIPTION)
328
 
329
+ access_token = st.text_input("Your VK API access token", help='You can obtain your token from https://vkhost.github.io/')
330
+ afl_url = st.text_input("AFL url", help='Example: https://afl.ru/football/afl-moscow-8x8/afl-cup-krasnaya-presnya-3097/matches/463676')
 
 
 
 
 
 
 
 
 
 
 
 
331
 
332
  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.')
333
  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.')