ura23 commited on
Commit
51ae8ca
·
verified ·
1 Parent(s): bffc5f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -249,14 +249,15 @@ def main():
249
 
250
  with gr.Row():
251
  with gr.Column():
252
- image_files = gr.File(
253
- file_types=["image"], label="Upload Images", file_count="multiple",
254
- )
255
 
256
  submit = gr.Button(
257
  value="Process Images", variant="primary"
258
  )
259
 
 
 
 
 
260
  # Wrap the model selection and sliders in an Accordion
261
  with gr.Accordion("Advanced Settings", open=False): # Collapsible by default
262
  model_repo = gr.Dropdown(
 
249
 
250
  with gr.Row():
251
  with gr.Column():
 
 
 
252
 
253
  submit = gr.Button(
254
  value="Process Images", variant="primary"
255
  )
256
 
257
+ image_files = gr.File(
258
+ file_types=["image"], label="Upload Images", file_count="multiple",
259
+ )
260
+
261
  # Wrap the model selection and sliders in an Accordion
262
  with gr.Accordion("Advanced Settings", open=False): # Collapsible by default
263
  model_repo = gr.Dropdown(