experiments with repa-e

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-10-27 15:28:18 -04:00
parent e6af602c0d
commit fbd24c290a
6 changed files with 55 additions and 11 deletions
+3
View File
@@ -163,6 +163,9 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
if p.override_settings.get('sd_vae', None) == 'TAESD':
p.vae_type = 'Tiny'
p.override_settings.pop('sd_vae', None)
if p.override_settings.get('sd_vae', None) == 'REPA-E':
p.vae_type = 'Repa'
p.override_settings.pop('sd_vae', None)
if p.override_settings.get('Hires upscaler', None) is not None:
p.enable_hr = True
if len(p.override_settings.keys()) > 0: