0x90e commited on
Commit
ba3983f
·
1 Parent(s): 9f5d654

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -22,10 +22,6 @@ css = '''
22
  width: auto;
23
  }
24
 
25
- #preview_img {
26
- height: 100% !important;
27
- }
28
-
29
  #preview_file .h-full.min-h-\[15rem\].flex.justify-center.items-center {
30
  min-height: initial !important;
31
  padding: 10px 0;
@@ -82,7 +78,7 @@ with gr.Blocks(title=title, css=css) as demo:
82
  with gr.Row():
83
  out_file = gr.File(interactive=False, show_label=False, elem_id="preview_file")
84
 
85
- gr.HTML(value="<p><a href='https://upscale.wiki/wiki/Model_Database'>Model Database</a></p><p><h2>Known issue:</h2> when downloading a photo for the second time in Colab, it doesn't work. If someone knows why, please create a thread in the discussion tab and I'll fix this issue.</p>")
86
 
87
  upscale_btn.click(process_image.inference, inputs=[input_image, upscale_size, upscale_type], outputs=[output_image, out_file])
88
 
 
22
  width: auto;
23
  }
24
 
 
 
 
 
25
  #preview_file .h-full.min-h-\[15rem\].flex.justify-center.items-center {
26
  min-height: initial !important;
27
  padding: 10px 0;
 
78
  with gr.Row():
79
  out_file = gr.File(interactive=False, show_label=False, elem_id="preview_file")
80
 
81
+ gr.HTML(value="<p><a href='https://upscale.wiki/wiki/Model_Database'>Model Database</a></p>")
82
 
83
  upscale_btn.click(process_image.inference, inputs=[input_image, upscale_size, upscale_type], outputs=[output_image, out_file])
84