lllyasviel commited on
Commit
075a1c0
·
1 Parent(s): 168f209
Files changed (1) hide show
  1. modules/default_pipeline.py +1 -1
modules/default_pipeline.py CHANGED
@@ -14,7 +14,7 @@ del xl_base.vae
14
 
15
 
16
  @torch.no_grad()
17
- def process(positive_prompt, negative_prompt, width=1024, height=1024, batch_size=1):
18
  positive_conditions = core.encode_prompt_condition(clip=xl_base.clip, prompt=positive_prompt)
19
  negative_conditions = core.encode_prompt_condition(clip=xl_base.clip, prompt=negative_prompt)
20
 
 
14
 
15
 
16
  @torch.no_grad()
17
+ def process(positive_prompt, negative_prompt, width=1280, height=960, batch_size=1):
18
  positive_conditions = core.encode_prompt_condition(clip=xl_base.clip, prompt=positive_prompt)
19
  negative_conditions = core.encode_prompt_condition(clip=xl_base.clip, prompt=negative_prompt)
20