fffiloni commited on
Commit
8c18cf4
1 Parent(s): 4b6af4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -108,8 +108,8 @@ with gr.Blocks(css=css) as demo:
108
  with gr.Row():
109
  with gr.Column():
110
  project_name = gr.Textbox(value="my-new-project")
111
- video_frames = gr.Files(label="Video frames")
112
- masks_frames = gr.Files(label="Masks frames")
113
 
114
  submit_btn = gr.Button("Submit")
115
 
 
108
  with gr.Row():
109
  with gr.Column():
110
  project_name = gr.Textbox(value="my-new-project")
111
+ video_frames = gr.File(label="Video frames", file_types=["image"], file_count="multiple")
112
+ masks_frames = gr.File(label="Masks frames", file_types=["image"], file_count="multiple")
113
 
114
  submit_btn = gr.Button("Submit")
115