From eb9f0be91ada14e41df150127fdfba2b951ce893 Mon Sep 17 00:00:00 2001 From: Sean McLellan Date: Fri, 26 Aug 2022 03:53:55 -0400 Subject: [PATCH] Set default to none for gfpgan_strength --- scripts/dream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dream.py b/scripts/dream.py index f6feb10adc..5d5e8db4a5 100755 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -496,7 +496,7 @@ def create_cmd_parser(): parser.add_argument( '-G', '--gfpgan_strength', - default=0.5, + default=None, type=float, help='The strength at which to apply the GFPGAN model to the result, in order to improve faces.', )