diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-07 13:46:08 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-07 13:46:08 +0300 |
commit | 15bb8e8057f8e19af4e5377437687aac7e33eeb4 (patch) | |
tree | 7a3bc5d7d633626fdfdf2ff8c76c408e45b6ceff /modules/shared.py | |
parent | 8dcd3e57e7f56ea45ac815ce479ddfc70122ee27 (diff) |
labeling updates according to anon's feedback
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index a16b0069..beb6f9bb 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -121,7 +121,7 @@ class Options: "show_progressbar": OptionInfo(True, "Show progressbar"),
"show_progress_every_n_steps": OptionInfo(0, "Show show image creation progress every N sampling steps. Set 0 to disable.", gr.Slider, {"minimum": 0, "maximum": 32, "step": 1}),
"face_restoration_model": OptionInfo(None, "Face restoration model", gr.Radio, lambda: {"choices": [x.name() for x in face_restorers]}),
- "code_former_weight": OptionInfo(0.5, "CodeFormer weight parameter; 0 = fix face completely; 1 = do nothing", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.01}),
+ "code_former_weight": OptionInfo(0.5, "CodeFormer weight parameter; 0 = maximum effect; 1 = minimum effect", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.01}),
}
def __init__(self):
|