r3gm R-Kentaren commited on
Commit
9722842
·
verified ·
1 Parent(s): 8ec144b

- Better (4fdd84ab2c444d633a0128243a0309a993a4bb3a)


Co-authored-by: BF' Sky Roger <[email protected]>

Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -286,8 +286,11 @@ class UpscalerApp:
286
  with gr.Accordion("Advanced Settings", open=False):
287
  with gr.Row():
288
  upscaler_size_slider = gr.Slider(minimum=1.1, maximum=4.0, value=2.0, step=0.1, label="Upscale Factor")
 
289
  tile_slider = gr.Slider(minimum=0, maximum=1024, value=192, step=16, label="Tile Size (0 is not tile)")
 
290
  tile_overlap_slider = gr.Slider(minimum=0, maximum=128, value=8, step=1, label="Tile Overlap")
 
291
  half_checkbox = gr.Checkbox(label="Use Half Precision (FP16)", value=True)
292
 
293
 
 
286
  with gr.Accordion("Advanced Settings", open=False):
287
  with gr.Row():
288
  upscaler_size_slider = gr.Slider(minimum=1.1, maximum=4.0, value=2.0, step=0.1, label="Upscale Factor")
289
+ with gr.Row():
290
  tile_slider = gr.Slider(minimum=0, maximum=1024, value=192, step=16, label="Tile Size (0 is not tile)")
291
+ with gr.Row():
292
  tile_overlap_slider = gr.Slider(minimum=0, maximum=128, value=8, step=1, label="Tile Overlap")
293
+ with gr.Row():
294
  half_checkbox = gr.Checkbox(label="Use Half Precision (FP16)", value=True)
295
 
296