From ecc6b75a3ede6d1d2850d69e998c92c342efdf2d Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Sat, 10 Sep 2022 09:53:27 -0400 Subject: [PATCH] remove -F option from normalized prompt --- ldm/dream/pngwriter.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ldm/dream/pngwriter.py b/ldm/dream/pngwriter.py index 1039413f14..3f3a15891b 100644 --- a/ldm/dream/pngwriter.py +++ b/ldm/dream/pngwriter.py @@ -78,6 +78,4 @@ class PromptFormatter: if opt.with_variations: formatted_variations = ','.join(f'{seed}:{weight}' for seed, weight in opt.with_variations) switches.append(f'-V{formatted_variations}') - if t2i.full_precision: - switches.append('-F') return ' '.join(switches)