Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -83,6 +83,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
83 |
],
|
84 |
outputs=[driving_video_path]
|
85 |
)
|
|
|
|
|
|
|
86 |
with gr.Row():
|
87 |
driving_video_path.render()
|
88 |
|
|
|
83 |
],
|
84 |
outputs=[driving_video_path]
|
85 |
)
|
86 |
+
with gr.Row():
|
87 |
+
checkbox_female = gr.Checkbox(label="Female video", value=True) # 디폴트 체크
|
88 |
+
checkbox_male = gr.Checkbox(label="Male video")
|
89 |
with gr.Row():
|
90 |
driving_video_path.render()
|
91 |
|