chun commited on
Commit
f8ad5ab
1 Parent(s): 0f2187c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def show(img):
22
  input = gr.inputs.Image(type='pil', label="Original Image", source="upload", optional=True)
23
  inputs = [input]
24
  outputs = gr.outputs.Image(type="pil", label="Output Image")
25
- title = "Dog and Cat Object detection"
26
  image = gr.inputs.Image(shape=(64,64))
27
 
28
  demo=gr.Interface(fn=show, inputs=image,examples=["photo/a01.jpg", "photo/a02.jpg","photo/a03.jpg","photo/a04.jpg"],title=title,outputs="text").launch(debug='True')
 
22
  input = gr.inputs.Image(type='pil', label="Original Image", source="upload", optional=True)
23
  inputs = [input]
24
  outputs = gr.outputs.Image(type="pil", label="Output Image")
25
+ title = "Dog and Cat Image Classification"
26
  image = gr.inputs.Image(shape=(64,64))
27
 
28
  demo=gr.Interface(fn=show, inputs=image,examples=["photo/a01.jpg", "photo/a02.jpg","photo/a03.jpg","photo/a04.jpg"],title=title,outputs="text").launch(debug='True')