Elham Amini commited on
Commit
2b6065f
1 Parent(s): 2195a38
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -16,4 +16,12 @@ article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog
16
  examples = ['pet.jpg']
17
  interpretation='default'
18
 
19
- gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
 
 
 
 
 
 
 
 
 
16
  examples = ['pet.jpg']
17
  interpretation='default'
18
 
19
+ gr.Interface(fn=predict,
20
+ inputs=gr.inputs.Image(shape=(512, 512)),
21
+ outputs=gr.outputs.Label(num_top_classes=3),
22
+ title=title,
23
+ description=description,
24
+ article=article,
25
+ examples=examples,
26
+ interpretation=interpretation
27
+ ).launch()