Pranjal-666 commited on
Commit
845b60d
1 Parent(s): 7195160

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def classify_image(img):
22
  # %% ../app.ipynb 10
23
  image= gr.inputs.Image(shape=(192, 192))
24
  label= gr.outputs.Label()
25
- examples =['./black.jpg', './teddy.jpg']
26
 
27
  intf= gr.Interface(fn =classify_image, inputs= image, outputs= label, Examples= examples)
28
  intf.launch()
 
22
  # %% ../app.ipynb 10
23
  image= gr.inputs.Image(shape=(192, 192))
24
  label= gr.outputs.Label()
25
+ examples =[['./black.jpg'], ['./teddy.jpg']]
26
 
27
  intf= gr.Interface(fn =classify_image, inputs= image, outputs= label, Examples= examples)
28
  intf.launch()