From 85dcae6e2baa67074ff70233b108689d97a60ec8 Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Tue, 2 Sep 2025 10:30:42 -0600 Subject: [PATCH] Set full size control images to default true --- toolkit/config_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/config_modules.py b/toolkit/config_modules.py index ae082c80..d2aa4b24 100644 --- a/toolkit/config_modules.py +++ b/toolkit/config_modules.py @@ -818,7 +818,7 @@ class DatasetConfig: # be the part conditioned to be inpainted. The alpha 1 (visible) section will be the part that is ignored self.inpaint_path: Union[str,List[str]] = kwargs.get('inpaint_path', None) # instead of cropping ot match image, it will serve the full size control image (clip images ie for ip adapters) - self.full_size_control_images: bool = kwargs.get('full_size_control_images', False) + self.full_size_control_images: bool = kwargs.get('full_size_control_images', True) self.alpha_mask: bool = kwargs.get('alpha_mask', False) # if true, will use alpha channel as mask self.mask_path: str = kwargs.get('mask_path', None) # focus mask (black and white. White has higher loss than black)