Spaces:
Sleeping
Sleeping
Commit
·
3e0a76b
1
Parent(s):
2922d32
Update app.py
Browse files
app.py
CHANGED
@@ -419,4 +419,6 @@ def segment(image):
|
|
419 |
return img
|
420 |
examples = os.listdir('../../Examples')
|
421 |
examples = ['../../Examples/' + item for item in examples]
|
422 |
-
|
|
|
|
|
|
419 |
return img
|
420 |
examples = os.listdir('../../Examples')
|
421 |
examples = ['../../Examples/' + item for item in examples]
|
422 |
+
title="Context R-CNN"
|
423 |
+
description="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 imporoves on Faster R-CNN by building a contextual bank by picking up 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()
|