Spaces:
Paused
Paused
Robledo Gularte Gonçalves
commited on
Commit
·
1527622
1
Parent(s):
badd06b
remove examples code
Browse files
app.py
CHANGED
@@ -1105,17 +1105,17 @@ with gr.Blocks(
|
|
1105 |
outputs=[textured_model_output]
|
1106 |
)
|
1107 |
|
1108 |
-
with gr.Row():
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
|
1120 |
demo.load(start_session)
|
1121 |
demo.unload(end_session)
|
|
|
1105 |
outputs=[textured_model_output]
|
1106 |
)
|
1107 |
|
1108 |
+
# with gr.Row():
|
1109 |
+
# examples = gr.Examples(
|
1110 |
+
# examples=[
|
1111 |
+
# f"./examples/{image}"
|
1112 |
+
# for image in os.listdir(f"./examples/")
|
1113 |
+
# ],
|
1114 |
+
# fn=run_full,
|
1115 |
+
# inputs=[image_prompts],
|
1116 |
+
# outputs=[seg_image, model_output, textured_model_output],
|
1117 |
+
# cache_examples=False,
|
1118 |
+
# )
|
1119 |
|
1120 |
demo.load(start_session)
|
1121 |
demo.unload(end_session)
|