Logan Zoellner commited on
Commit
cf98b6e
1 Parent(s): 6139d88

debug debug

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -19,9 +19,12 @@ def generate_image(seed,psi):
19
  return image_np
20
 
21
  def generate_model(img):
 
 
22
  iface = gr.Interface.load("spaces/nagolinc/styleGanHuman_and_PIFu")
 
23
  result=iface.fns[0].fn(img)
24
- print(result)
25
  return model,file
26
 
27
 
 
19
  return image_np
20
 
21
  def generate_model(img):
22
+
23
+ print("about to die")
24
  iface = gr.Interface.load("spaces/nagolinc/styleGanHuman_and_PIFu")
25
+ print("calling interface")
26
  result=iface.fns[0].fn(img)
27
+ print("got result",result)
28
  return model,file
29
 
30