meeww commited on
Commit
68998a5
·
1 Parent(s): 6e8dace

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -50,7 +50,8 @@ def generate(name):
50
  init()
51
  crop()
52
  img = Image.open("results64/0.png")
53
- return img
 
54
 
55
- iface = gr.Interface(fn=generate, inputs=None, outputs="image")
56
  iface.launch(debug = True)
 
50
  init()
51
  crop()
52
  img = Image.open("results64/0.png")
53
+ print(img)
54
+ return "hi"
55
 
56
+ iface = gr.Interface(fn=generate, inputs=None, outputs="text")
57
  iface.launch(debug = True)