vk commited on
Commit
aa09faf
Β·
1 Parent(s): 81302a5

test images and gitignore added

Browse files
.idea/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
app.py CHANGED
@@ -59,7 +59,7 @@ if __name__ == "__main__":
59
  gr.Checkbox(label="add_fog"),
60
  gr.Slider(0, 1,value=0.5, step=0.01, label="confidence_threshold"),
61
  gr.Slider(0, 1,value=0.45, step=0.01, label="iou_threshold")],
62
- examples=[[show_example('test1.jpg')],[show_example('test2.jpg')],[show_example('test3.jpg')]],
63
  outputs=[gr.Image(type="numpy")],
64
  title="Pedestrian Detection with All weather augmentation",
65
  description="Upload images for pedestrian detection")
 
59
  gr.Checkbox(label="add_fog"),
60
  gr.Slider(0, 1,value=0.5, step=0.01, label="confidence_threshold"),
61
  gr.Slider(0, 1,value=0.45, step=0.01, label="iou_threshold")],
62
+ examples=[[show_example('test-images/test1.jpg')],[show_example('test-images/test2.jpg')],[show_example('test-images/test3.jpg')]],
63
  outputs=[gr.Image(type="numpy")],
64
  title="Pedestrian Detection with All weather augmentation",
65
  description="Upload images for pedestrian detection")
test1.jpg β†’ test-images/test1.jpg RENAMED
File without changes
test2.jpg β†’ test-images/test2.jpg RENAMED
File without changes
test3.jpg β†’ test-images/test3.jpg RENAMED
File without changes