Omnibus commited on
Commit
6769fa2
·
1 Parent(s): b20e3ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -26,10 +26,10 @@ def transf(inp):
26
  with gr.Blocks() as app:
27
  gr.Markdown("<center><h1 style='font-size:xxx-large;'>Pose Transfer Demo</h1><br><h3>repo: <a href='https://github.com/prasunroy/pose-transfer'>https://github.com/prasunroy/pose-transfer</a></h3>")
28
  with gr.Row():
29
- condition_im = gr.Image(label='Style Image')
30
- reference_im = gr.Image(label='Pose Image')
31
  with gr.Accordion("Pose Maker",open=False):
32
- trans_box=gr.Textbox(label="Transfer Generated Pose Image File> HERE")
33
  pose_maker=gr.HTML("<iframe src='https://omnibus-model-mover.hf.space' width='100%' height='520'></iframe>")
34
  btn=gr.Button()
35
 
 
26
  with gr.Blocks() as app:
27
  gr.Markdown("<center><h1 style='font-size:xxx-large;'>Pose Transfer Demo</h1><br><h3>repo: <a href='https://github.com/prasunroy/pose-transfer'>https://github.com/prasunroy/pose-transfer</a></h3>")
28
  with gr.Row():
29
+ condition_im = gr.Image(type='filepath',label='Style Image')
30
+ reference_im = gr.Image(type='filepath'label='Pose Image')
31
  with gr.Accordion("Pose Maker",open=False):
32
+ trans_box=gr.Textbox(label="Paste Generated Pose Image URL> HERE")
33
  pose_maker=gr.HTML("<iframe src='https://omnibus-model-mover.hf.space' width='100%' height='520'></iframe>")
34
  btn=gr.Button()
35