freealise commited on
Commit
7c44990
·
verified ·
1 Parent(s): 9bdb830

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -145,8 +145,8 @@ def linscale(linear):
145
 
146
  def loadf(f):
147
  if f != None:
148
- f = f.sort()
149
- return f
150
 
151
 
152
  title="""
@@ -179,7 +179,7 @@ with gr.Blocks() as demo:
179
  with gr.Column():
180
  files_input = gr.File(file_count="multiple", file_types=['image'])
181
  gallery_input = gr.Gallery(label="Slides", preview=True, columns=8192, interactive=False)
182
- files_input.change(fn=loadf, inputs=[files_input], outputs=[gallery_input])
183
  with gr.Row():
184
  interpolation_slider = gr.Slider(minimum=1, maximum=5, step=1, value=1, label="Interpolation Steps: ")
185
  interpolation = gr.Number(value=1, show_label=False, interactive=False)
 
145
 
146
  def loadf(f):
147
  if f != None:
148
+ f.sort()
149
+ return f, f
150
 
151
 
152
  title="""
 
179
  with gr.Column():
180
  files_input = gr.File(file_count="multiple", file_types=['image'])
181
  gallery_input = gr.Gallery(label="Slides", preview=True, columns=8192, interactive=False)
182
+ files_input.change(fn=loadf, inputs=[files_input], outputs=[files_input, gallery_input])
183
  with gr.Row():
184
  interpolation_slider = gr.Slider(minimum=1, maximum=5, step=1, value=1, label="Interpolation Steps: ")
185
  interpolation = gr.Number(value=1, show_label=False, interactive=False)