prakrutpatel commited on
Commit
bbead3c
·
1 Parent(s): bbd3efa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -421,4 +421,4 @@ examples = os.listdir('../../Examples')
421
  examples = ['../../Examples/' + item for item in examples]
422
  title="Context R-CNN"
423
  description=f"Gradio demo for **Context R-CNN**: [[Paper]](https://arxiv.org/abs/1912.03538). This model is a real-time neural network for object detection of Gopher Tortoises. Faster R-CNN is used to get a context feature matrix which is used by Context R-CNN to improve detection. Uploaded images need to have date taken attribute in the metadata for it to work. Context R-CNN improves upon Faster R-CNN by building a contextual memory bank using environmental factors like time of day, seasonal changes, etc."
424
- gr.Interface(fn=segment, inputs = "file",outputs = "image" ,title=title, description=description ,examples=examples,enable_queue=True).launch()
 
421
  examples = ['../../Examples/' + item for item in examples]
422
  title="Context R-CNN"
423
  description=f"Gradio demo for **Context R-CNN**: [[Paper]](https://arxiv.org/abs/1912.03538). This model is a real-time neural network for object detection of Gopher Tortoises. Faster R-CNN is used to get a context feature matrix which is used by Context R-CNN to improve detection. Uploaded images need to have date taken attribute in the metadata for it to work. Context R-CNN improves upon Faster R-CNN by building a contextual memory bank using environmental factors like time of day, seasonal changes, etc."
424
+ gr.Interface(fn=segment, inputs = "file",outputs = "image" ,title=title, description=description ,examples=examples,enable_queue=True).launch(share=True)