Manjushri commited on
Commit
c7c682b
·
verified ·
1 Parent(s): bad37a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -13,12 +13,10 @@ pipe = DiffusionPipeline.from_pretrained("circulus/canvers-fusionXL-v1", torch_d
13
  pipe.enable_xformers_memory_efficient_attention()
14
  torch.cuda.empty_cache()
15
 
16
- refiner = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-refiner-1.0", use_safetensors=True, torch_dtype=torch.float16, variant="fp16").to(device)
17
- refiner.enable_xformers_memory_efficient_attention()
18
- torch.cuda.empty_cache()
19
-
20
-
21
  def genie (Prompt, negative_prompt, height, width, scale, steps, seed):
 
 
 
22
  torch.cuda.empty_cache()
23
  generator = np.random.seed(0) if seed == 0 else torch.manual_seed(seed)
24
  int_image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale, output_type="latent").images
 
13
  pipe.enable_xformers_memory_efficient_attention()
14
  torch.cuda.empty_cache()
15
 
 
 
 
 
 
16
  def genie (Prompt, negative_prompt, height, width, scale, steps, seed):
17
+ torch.cuda.empty_cache()
18
+ refiner = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-refiner-1.0", use_safetensors=True, torch_dtype=torch.float16, variant="fp16").to(device)
19
+ refiner.enable_xformers_memory_efficient_attention()
20
  torch.cuda.empty_cache()
21
  generator = np.random.seed(0) if seed == 0 else torch.manual_seed(seed)
22
  int_image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale, output_type="latent").images