Sa-m commited on
Commit
01e162c
·
1 Parent(s): 8121193

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ def classify_image(inp):
63
  image = gr.inputs.Image(shape=(IMG_SIZE, IMG_SIZE))
64
  label = gr.outputs.Label(num_top_classes=2)
65
 
66
- gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Cats Vs Dogs',height=600, width=1200,examples=ex).launch(debug=True)
67
 
68
 
69
 
 
63
  image = gr.inputs.Image(shape=(IMG_SIZE, IMG_SIZE))
64
  label = gr.outputs.Label(num_top_classes=2)
65
 
66
+ gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Cats Vs Dogs',height=600, width=1200,examples=ex,theme='peach').launch(debug=True)
67
 
68
 
69