diff options
Diffstat (limited to 'stable_diffusion.h')
-rw-r--r-- | stable_diffusion.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stable_diffusion.h b/stable_diffusion.h index b498a7c..887b469 100644 --- a/stable_diffusion.h +++ b/stable_diffusion.h @@ -22,11 +22,11 @@ struct sd_state char NegPrompt[256]; char ServerAddress[128]; int32 Steps = 10; - int32 Width = 384; - int32 Height = 512; + int32 Width = 960; + int32 Height = 640; int32 SamplerIndex = 0; real32 CFG = 7; - int32 BatchSize = 4; + int32 BatchSize = 1; real32 DenoisingStrength = 0.4; int32 Seed = -1; }; |