dgordonf commited on
Commit
a88966c
·
1 Parent(s): f314ce9

Update app.py

Browse files

Removed examples

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,7 +19,7 @@ def classify_img(img):
19
 
20
  image = gr.inputs.Image(shape=(192, 192))
21
  label = gr.outputs.label(num_top_classes=2)
22
- examples = ["golden_retriever.jpg", "cat.jpg", "dog.jpg"]
23
 
24
- intf = gr.Interface(fn=classify_img, inputs=image, outputs=label, examples = examples)
25
  intf.launch(inline=False)
 
19
 
20
  image = gr.inputs.Image(shape=(192, 192))
21
  label = gr.outputs.label(num_top_classes=2)
22
+ #examples = ["golden_retriever.jpg", "cat.jpg", "dog.jpg"]
23
 
24
+ intf = gr.Interface(fn=classify_img, inputs=image, outputs=label)
25
  intf.launch(inline=False)