yuragoithf commited on
Commit
1436621
·
1 Parent(s): b257d8c

Update app.py

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