yerang commited on
Commit
8114b34
·
verified ·
1 Parent(s): 5ec16d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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