Spaces:
Runtime error
Runtime error
Logan Zoellner
commited on
Commit
β’
c56670e
1
Parent(s):
36f072a
is it fixed now?
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: π
|
|
4 |
colorFrom: gray
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 3.0.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
|
|
4 |
colorFrom: gray
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 3.0.15
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
app.py
CHANGED
@@ -23,7 +23,8 @@ 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 |
-
model,file=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 |
+
model,file=iface(img)
|
28 |
print("got result",result)
|
29 |
return model,file
|
30 |
|