imanhamid commited on
Commit
acf9b65
·
1 Parent(s): d68b971

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -41,11 +41,13 @@ examples = [
41
  ['3.png']
42
  ]
43
 
 
 
44
  gr_interface = gr.Interface(
45
  fn=show_preds,
46
  inputs=["image"],
47
  outputs=[gr.Image(type="pil"), gr.Textbox(label="Predicted BBox:")],
48
- title='Selection Scan - Object Detection',
49
  examples=examples)
50
 
51
  gr_interface.launch(inline=False, share=False, debug=True)
 
41
  ['3.png']
42
  ]
43
 
44
+ description = "An object detection framework to localize regions under post-admixture selection from images of ancestry-painted chromosomes!"
45
+
46
  gr_interface = gr.Interface(
47
  fn=show_preds,
48
  inputs=["image"],
49
  outputs=[gr.Image(type="pil"), gr.Textbox(label="Predicted BBox:")],
50
+ title='Detect adaptive variants in admixed populations',
51
  examples=examples)
52
 
53
  gr_interface.launch(inline=False, share=False, debug=True)