Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -369,20 +369,20 @@ def app_gradio():
|
|
369 |
gr.Markdown(
|
370 |
'<span style="color: #808080; font-size: small;">*Person examples come from the demos of <a href="https://huggingface.co/spaces/levihsu/OOTDiffusion">OOTDiffusion</a> and <a href="https://www.outfitanyone.org">OutfitAnyone</a>. </span>'
|
371 |
)
|
372 |
-
# Person pose example
|
373 |
-
condition_person_exm = gr.Examples(
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
)
|
382 |
-
# Display text
|
383 |
-
gr.Markdown(
|
384 |
-
|
385 |
-
)
|
386 |
|
387 |
# Second column
|
388 |
with gr.Column(scale=1, min_width=350):
|
|
|
369 |
gr.Markdown(
|
370 |
'<span style="color: #808080; font-size: small;">*Person examples come from the demos of <a href="https://huggingface.co/spaces/levihsu/OOTDiffusion">OOTDiffusion</a> and <a href="https://www.outfitanyone.org">OutfitAnyone</a>. </span>'
|
371 |
)
|
372 |
+
# # Person pose example
|
373 |
+
# condition_person_exm = gr.Examples(
|
374 |
+
# examples=[
|
375 |
+
# os.path.join(root_path, "condition", "person", _)
|
376 |
+
# for _ in os.listdir(os.path.join(root_path, "condition", "person"))
|
377 |
+
# ],
|
378 |
+
# examples_per_page=4,
|
379 |
+
# inputs=cloth_image,
|
380 |
+
# label="Condition Reference Person Examples",
|
381 |
+
# )
|
382 |
+
# # Display text
|
383 |
+
# gr.Markdown(
|
384 |
+
# '<span style="color: #808080; font-size: small;">*Condition examples come from the Internet. </span>'
|
385 |
+
# )
|
386 |
|
387 |
# Second column
|
388 |
with gr.Column(scale=1, min_width=350):
|