Spaces:
Running
on
Zero
Running
on
Zero
fix: info
Browse files
app.py
CHANGED
@@ -83,7 +83,7 @@ interface = gr.Interface(
|
|
83 |
inputs=[
|
84 |
gr.Image(label="Low-light Image", type="pil"),
|
85 |
gr.Radio(choices=['Yes','No'],label="Image Score",info="Calculate NIQE, default is \"No\"."),
|
86 |
-
gr.Radio(choices=pth_files,label="Model Weights",info="Choose your model. The best models are \"SICE
|
87 |
gr.Slider(0.1,5,label="gamma curve",step=0.01,value=1.0, info="Lower is lighter, best range is [0.5,2.5]."),
|
88 |
gr.Slider(0,2,label="Alpha-s",step=0.01,value=1.0, info="Higher is more saturated."),
|
89 |
gr.Slider(0.1,2,label="Alpha-i",step=0.01,value=1.0, info="Higher is lighter.")
|
@@ -93,7 +93,7 @@ interface = gr.Interface(
|
|
93 |
gr.Textbox(label="NIQE",info="Lower is better.")
|
94 |
],
|
95 |
title="HVI-CIDNet (Low-Light Image Enhancement)",
|
96 |
-
description="The demo of paper \"
|
97 |
allow_flagging="never"
|
98 |
)
|
99 |
|
|
|
83 |
inputs=[
|
84 |
gr.Image(label="Low-light Image", type="pil"),
|
85 |
gr.Radio(choices=['Yes','No'],label="Image Score",info="Calculate NIQE, default is \"No\"."),
|
86 |
+
gr.Radio(choices=pth_files,label="Model Weights",info="Choose your model. The best models are \"SICE\" and \"Generalization\"."),
|
87 |
gr.Slider(0.1,5,label="gamma curve",step=0.01,value=1.0, info="Lower is lighter, best range is [0.5,2.5]."),
|
88 |
gr.Slider(0,2,label="Alpha-s",step=0.01,value=1.0, info="Higher is more saturated."),
|
89 |
gr.Slider(0.1,2,label="Alpha-i",step=0.01,value=1.0, info="Higher is lighter.")
|
|
|
93 |
gr.Textbox(label="NIQE",info="Lower is better.")
|
94 |
],
|
95 |
title="HVI-CIDNet (Low-Light Image Enhancement)",
|
96 |
+
description="The demo of paper \"HVI: A New Color Space for Low-light Image Enhancement\"",
|
97 |
allow_flagging="never"
|
98 |
)
|
99 |
|