Update app.py
Browse files
app.py
CHANGED
@@ -181,7 +181,7 @@ def inference(input_img=None, iou_threshold=0.6, conf_threshold=0.5, gc_trans=0.
|
|
181 |
|
182 |
|
183 |
title = "PASCAL VOC trained on Yolov3"
|
184 |
-
description = "A simple Gradio interface to infer on Yolov3 model, and get GradCAM results"
|
185 |
examples = [['examples/test_'+str(i)+'.jpg', 0.6, 0.5, 0.3] for i in range(10)]
|
186 |
|
187 |
demo = gr.Interface(inference,
|
|
|
181 |
|
182 |
|
183 |
title = "PASCAL VOC trained on Yolov3"
|
184 |
+
description = "A simple Gradio interface to infer on Yolov3 model, and get GradCAM results. PASCAL VOC has the following object classes: aeroplane, bicycle, bird, boat, bottle, bus, car, cat, chair, cow, diningtable, dog, horse, motorbike, person, pottedplant, sheep, sofa, train, tvmonitor"
|
185 |
examples = [['examples/test_'+str(i)+'.jpg', 0.6, 0.5, 0.3] for i in range(10)]
|
186 |
|
187 |
demo = gr.Interface(inference,
|