kaesb commited on
Commit
76f3e8b
·
1 Parent(s): 7ddb008

Added title and description to the app

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,4 +18,4 @@ def predict(img):
18
  title = "Cat or dog?"
19
  description = "Guesses whether the picture is of a cat or a dog"
20
 
21
- gr.Interface(fn=predict, inputs=gr.components.Image(shape=(512, 512)), outputs=gr.components.Label(num_top_classes=3)).launch()
 
18
  title = "Cat or dog?"
19
  description = "Guesses whether the picture is of a cat or a dog"
20
 
21
+ gr.Interface(fn=predict, inputs=gr.components.Image(shape=(512, 512)), outputs=gr.components.Label(num_top_classes=3), title=title,description=description).launch()