fffiloni commited on
Commit
97d21b8
1 Parent(s): 78a0afd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -105,13 +105,14 @@ with gr.Blocks(css=css) as demo:
105
  gr.HTML("""
106
  <h2 style="text-align: center;">ProPainter</h2>
107
  <p style="text-align: center;">
108
-
 
109
  </p>
110
  """)
111
 
112
  with gr.Row():
113
  with gr.Column():
114
- project_name = gr.Textbox(value="my-new-project")
115
  video_frames = gr.File(label="Video frames", file_types=["image"], file_count="multiple")
116
  masks_frames = gr.File(label="Masks frames", file_types=["image"], file_count="multiple")
117
 
 
105
  gr.HTML("""
106
  <h2 style="text-align: center;">ProPainter</h2>
107
  <p style="text-align: center;">
108
+ [ICCV 2023] ProPainter: Improving Propagation and Transformer for Video Inpainting <br />
109
+ <a href="https://github.com/sczhou/ProPainter" target="_blank">code</a> | <a href="https://shangchenzhou.com/projects/ProPainter/" target="_blank">project page</a>
110
  </p>
111
  """)
112
 
113
  with gr.Row():
114
  with gr.Column():
115
+ project_name = gr.Textbox(label="Name your project", value="my-new-project")
116
  video_frames = gr.File(label="Video frames", file_types=["image"], file_count="multiple")
117
  masks_frames = gr.File(label="Masks frames", file_types=["image"], file_count="multiple")
118