Spaces:
Runtime error
Runtime error
Adding descriptions
Browse files- app_canny_db.py +1 -1
- app_pose.py +10 -10
app_canny_db.py
CHANGED
@@ -31,7 +31,7 @@ def create_demo(model: Model):
|
|
31 |
"""
|
32 |
<div style="text-align: left; auto;">
|
33 |
<h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
|
34 |
-
Description: Our current
|
35 |
</h3>
|
36 |
</div>
|
37 |
""")
|
|
|
31 |
"""
|
32 |
<div style="text-align: left; auto;">
|
33 |
<h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
|
34 |
+
Description: Our current release supports only four predefined DreamBooth models and four "motion edges". So you must choose one DreamBooth model and one "motion edges" shown below, or use the examples. The keywords <b>1girl style</b>, <b>gtav</b>, <b>arcane style</b>, and <b>arcane style</b> correspond to the models from left to right.
|
35 |
</h3>
|
36 |
</div>
|
37 |
""")
|
app_pose.py
CHANGED
@@ -15,18 +15,18 @@ def create_demo(model: Model):
|
|
15 |
with gr.Blocks() as demo:
|
16 |
with gr.Row():
|
17 |
gr.Markdown('## Text and Pose Conditional Video Generation')
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
|
28 |
with gr.Row():
|
29 |
-
gr.Markdown('### You must select one pose sequence shown
|
30 |
with gr.Column():
|
31 |
gallery_pose_sequence = gr.Gallery(label="Pose Sequence", value=[('__assets__/poses_skeleton_gifs/dance1.gif', "Motion 1"), ('__assets__/poses_skeleton_gifs/dance2.gif', "Motion 2"), ('__assets__/poses_skeleton_gifs/dance3.gif', "Motion 3"), ('__assets__/poses_skeleton_gifs/dance4.gif', "Motion 4"), ('__assets__/poses_skeleton_gifs/dance5.gif', "Motion 5")]).style(grid=[2], height="auto")
|
32 |
input_video_path = gr.Textbox(label="Pose Sequence",visible=False,value="Motion 1")
|
|
|
15 |
with gr.Blocks() as demo:
|
16 |
with gr.Row():
|
17 |
gr.Markdown('## Text and Pose Conditional Video Generation')
|
18 |
+
with gr.Row():
|
19 |
+
gr.HTML(
|
20 |
+
"""
|
21 |
+
<div style="text-align: left; auto;">
|
22 |
+
<h2 style="font-weight: 450; font-size: 1rem; margin: 0rem">
|
23 |
+
Description: You must select one pose sequence shown below, or use the examples.
|
24 |
+
</h3>
|
25 |
+
</div>
|
26 |
+
""")
|
27 |
|
28 |
with gr.Row():
|
29 |
+
gr.Markdown('### You must select one pose sequence shown on the right, or use the examples')
|
30 |
with gr.Column():
|
31 |
gallery_pose_sequence = gr.Gallery(label="Pose Sequence", value=[('__assets__/poses_skeleton_gifs/dance1.gif', "Motion 1"), ('__assets__/poses_skeleton_gifs/dance2.gif', "Motion 2"), ('__assets__/poses_skeleton_gifs/dance3.gif', "Motion 3"), ('__assets__/poses_skeleton_gifs/dance4.gif', "Motion 4"), ('__assets__/poses_skeleton_gifs/dance5.gif', "Motion 5")]).style(grid=[2], height="auto")
|
32 |
input_video_path = gr.Textbox(label="Pose Sequence",visible=False,value="Motion 1")
|