intelliarts commited on
Commit
dce9876
·
verified ·
1 Parent(s): f0edf6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -78,8 +78,8 @@ description = "This demo introduces an interactive playground for our trained De
78
 
79
  gr.Interface(
80
  inference,
81
- [gr.inputs.Image(type="pil", label="Input")],
82
- gr.outputs.Image(type="numpy", label="Output"),
83
  title=title,
84
  description=description,
85
  examples=[]).launch()
 
78
 
79
  gr.Interface(
80
  inference,
81
+ gr.Image(type="pil", label="Input"),
82
+ gr.Label(label="Prediction"),
83
  title=title,
84
  description=description,
85
  examples=[]).launch()