Spaces:
Running
on
Zero
Running
on
Zero
Better (#1)
Browse files- Better (4fdd84ab2c444d633a0128243a0309a993a4bb3a)
Co-authored-by: BF' Sky Roger <[email protected]>
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 |
|