more advanced feedback to consider

#4
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -164,8 +164,8 @@ app_ui = ui.page_fluid(
164
  f"Before analysing images it is possible to change the threshold used to discard overlapping segmentations produced by the model. "
165
  f"The default threshold is {OPTIMAL_NMS_THRESHOLD} as this was found to be optimal for our data, but you can adjust this value in "
166
  f"the slider."
167
- f" We recommend leaving this as the default, and only increasing the value if you find that your images have many overlapping seeds "
168
- f"and some of them are not being included in the output. Similarly, you can decrease this value if your images have very few "
169
  f"overlapping seeds and the output includes multiple segmentations of the same seed."),
170
  ui.p("Note that ", ui.HTML("<b>the upper limit for the number of detected seeds in a single image is 800</b>"), ' and ',
171
  ui.HTML("<b>the app has a maximum capacity of approx. 50 images</b>"),
@@ -175,7 +175,7 @@ app_ui = ui.page_fluid(
175
  ui.a("HuggingFace Space", href=discussion_url, target="_blank", **{'aria-label': 'Project discussion space'}), '.'
176
  ),
177
  ui.p(disclaimer_text),
178
- ui.p("* Images are stored temporarily on HuggingFace servers and deleted at the end of your session."),
179
 
180
  class_="body-bar"
181
 
 
164
  f"Before analysing images it is possible to change the threshold used to discard overlapping segmentations produced by the model. "
165
  f"The default threshold is {OPTIMAL_NMS_THRESHOLD} as this was found to be optimal for our data, but you can adjust this value in "
166
  f"the slider."
167
+ f" We recommend leaving this as the default, and only decreasing the value if you find that your images have many overlapping seeds "
168
+ f"and some of them are not being included in the output. Similarly, you can increase this value if your images have very few "
169
  f"overlapping seeds and the output includes multiple segmentations of the same seed."),
170
  ui.p("Note that ", ui.HTML("<b>the upper limit for the number of detected seeds in a single image is 800</b>"), ' and ',
171
  ui.HTML("<b>the app has a maximum capacity of approx. 50 images</b>"),
 
175
  ui.a("HuggingFace Space", href=discussion_url, target="_blank", **{'aria-label': 'Project discussion space'}), '.'
176
  ),
177
  ui.p(disclaimer_text),
178
+ ui.p("* Images are stored temporarily on HuggingFace servers and deleted and the end of your session."),
179
 
180
  class_="body-bar"
181