dbuscombe commited on
Commit
e6127cc
1 Parent(s): 006df6c
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -54,9 +54,9 @@ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1609.051
54
  # ['examples/2000-08-18-18-23-46_L5_rgb.jpg'],['examples/2000-09-19-18-24-18_L5_rgb.jpg'],['examples/2000-10-21-18-24-43_L5_rgb.jpg']]
55
 
56
  examples= [[l] for l in glob('examples/tiles/*.jpg')]
57
- out1 = gr.outputs.Image(label="Cropped input image", type='pil')
58
- out2 = gr.outputs.Image(label="Super-resolution x3 image", type='pil')
59
- out3 = gr.outputs.Dataframe(label='Summary', headers=["Input (px)", "Output (px)"], type='pandas')
60
 
61
  iface = gr.Interface(
62
  fn=infer,
 
54
  # ['examples/2000-08-18-18-23-46_L5_rgb.jpg'],['examples/2000-09-19-18-24-18_L5_rgb.jpg'],['examples/2000-10-21-18-24-43_L5_rgb.jpg']]
55
 
56
  examples= [[l] for l in glob('examples/tiles/*.jpg')]
57
+ out1 = gr.outputs.Dataframe(label='Summary', headers=["Input (px)", "Output (px)"], type='pandas')
58
+ out2 = gr.outputs.Image(label="Cropped input image", type='pil')
59
+ out3 = gr.outputs.Image(label="Super-resolution x3 image", type='pil')
60
 
61
  iface = gr.Interface(
62
  fn=infer,