intelliarts commited on
Commit
746b003
·
verified ·
1 Parent(s): 7d57be7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -60,8 +60,8 @@ description = "This demo introduces an interactive playground for our trained De
60
 
61
  gr.Interface(
62
  inference,
63
- [gr.inputs.Image(type="pil", label="Input")],
64
- gr.outputs.Image(type="numpy", label="Output"),
65
  title=title,
66
  description=description,
67
  examples=[]).launch()
 
60
 
61
  gr.Interface(
62
  inference,
63
+ gr.Image(type="pil", label="Input"),
64
+ gr.Label(label="Prediction"),
65
  title=title,
66
  description=description,
67
  examples=[]).launch()