yuragoithf commited on
Commit
a0a4808
·
1 Parent(s): 785a06c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -97,12 +97,12 @@ classes_to_show = gr.components.Textbox(
97
  )
98
 
99
  inputs = [image_in, prob_threshold_slider, classes_to_show]
100
- examples='examples'
101
 
102
  gr.Interface(fn=model_inference,
103
  inputs=inputs,
104
  outputs=image_out,
105
  title=title,
106
  description=description,
107
- examples=examples
108
  ).launch()
 
97
  )
98
 
99
  inputs = [image_in, prob_threshold_slider, classes_to_show]
100
+
101
 
102
  gr.Interface(fn=model_inference,
103
  inputs=inputs,
104
  outputs=image_out,
105
  title=title,
106
  description=description,
107
+ examples=["carplane.webp", "CTH.png"]
108
  ).launch()