victorisgeek commited on
Commit
d7ae51b
·
verified ·
1 Parent(s): 6feab78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -56,8 +56,13 @@ destination = []
56
  thresholds = []
57
  num_faces = 5
58
 
59
- with gr.Blocks(theme='victorisgeek/gray')
60
- with gr.Row():
 
 
 
 
 
61
  gr.Markdown("# Refacer")
62
  with gr.Row():
63
  video = gr.Video(label="Original video", format="mp4")
 
56
  thresholds = []
57
  num_faces = 5
58
 
59
+ from gradio.themes.utils.theme_dropdown import create_theme_dropdown
60
+
61
+ dropdown, js = create_theme_dropdown()
62
+
63
+ with gr.Blocks(theme='victorisgeek/gray') as demo:
64
+ with gr.Row(equal_height=True):
65
+ with gr.Column(scale=10):
66
  gr.Markdown("# Refacer")
67
  with gr.Row():
68
  video = gr.Video(label="Original video", format="mp4")