Logan Zoellner commited on
Commit
1391cb8
·
1 Parent(s): 812a328

return correct values

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ def generate_model(img):
23
  print("about to die")
24
  iface = gr.Interface.load("spaces/radames/PIFu-Clothed-Human-Digitization")
25
  print("calling interface")
26
- result=iface.fns[0].fn(img)
27
  print("got result",result)
28
  return model,file
29
 
 
23
  print("about to die")
24
  iface = gr.Interface.load("spaces/radames/PIFu-Clothed-Human-Digitization")
25
  print("calling interface")
26
+ model,file=iface.fns[0].fn(img)
27
  print("got result",result)
28
  return model,file
29