Spaces:
Runtime error
Runtime error
Zhenyu Li
commited on
Commit
•
379bdb1
1
Parent(s):
51946d3
update
Browse files
app.py
CHANGED
@@ -335,11 +335,6 @@ with gr.Blocks() as demo:
|
|
335 |
inputs=[input_image, depth_image, generated_image],
|
336 |
outputs=[input_image, depth_image, generated_image],
|
337 |
examples=[
|
338 |
-
[
|
339 |
-
"examples/example_3.jpeg",
|
340 |
-
"examples/1_depth.png",
|
341 |
-
"examples/1_gen.png",
|
342 |
-
],
|
343 |
[
|
344 |
"examples/example_4.jpeg",
|
345 |
"examples/2_depth.png",
|
@@ -350,7 +345,12 @@ with gr.Blocks() as demo:
|
|
350 |
"examples/example_6.png",
|
351 |
"examples/4_depth.png",
|
352 |
"examples/4_gen.png",
|
353 |
-
]
|
|
|
|
|
|
|
|
|
|
|
354 |
cache_examples=True,
|
355 |
fn=hack_process)
|
356 |
|
|
|
335 |
inputs=[input_image, depth_image, generated_image],
|
336 |
outputs=[input_image, depth_image, generated_image],
|
337 |
examples=[
|
|
|
|
|
|
|
|
|
|
|
338 |
[
|
339 |
"examples/example_4.jpeg",
|
340 |
"examples/2_depth.png",
|
|
|
345 |
"examples/example_6.png",
|
346 |
"examples/4_depth.png",
|
347 |
"examples/4_gen.png",
|
348 |
+
],
|
349 |
+
[
|
350 |
+
"examples/example_3.jpeg",
|
351 |
+
"examples/1_depth.png",
|
352 |
+
"examples/1_gen.png",
|
353 |
+
],],
|
354 |
cache_examples=True,
|
355 |
fn=hack_process)
|
356 |
|