ho11laqe commited on
Commit
97ad5c0
1 Parent(s): 99c34fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -55,6 +55,14 @@ def run_front_detection(input_img):
55
 
56
  return pil_image_modified
57
 
58
- demo = gr.Interface(run_front_detection, gr.Image(type='pil'), "image", description="Not ensemble prediction just the first fold")
 
 
 
 
 
 
 
 
59
 
60
  demo.launch()
 
55
 
56
  return pil_image_modified
57
 
58
+ demo = gr.Interface(run_front_detection, gr.Image(type='pil'), "image", title='Calving front detection with nnU-Net',
59
+ description="Drag & Drop an PNG image to apply the calving fron detection <p> \
60
+ we sugget to use images smaller than 200KB <p> \
61
+ trained and tested with the dataset of Gourmelon et al. \
62
+ https://doi.pangaea.de/10.1594/PANGAEA.940950 ")
63
+
64
+
65
+
66
+
67
 
68
  demo.launch()