Hatman commited on
Commit
7385ada
·
verified ·
1 Parent(s): 6d7c4d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -15,7 +15,6 @@ def randomize_seed_fn(seed: int, randomize_seed: bool) -> int:
15
  return seed
16
 
17
  device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')
18
- torch.cuda.set_device(device)
19
  pipeline = AutoPipelineForText2Image.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16).to(device)
20
  pipeline.load_ip_adapter("h94/IP-Adapter", subfolder="sdxl_models", weight_name="ip-adapter_sdxl.bin")
21
 
@@ -31,7 +30,7 @@ def create_image(image_pil,
31
  target="Load only style blocks",
32
  ):
33
 
34
-
35
  if target !="Load original IP-Adapter":
36
  if target=="Load only style blocks":
37
  scale = {
 
15
  return seed
16
 
17
  device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')
 
18
  pipeline = AutoPipelineForText2Image.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16).to(device)
19
  pipeline.load_ip_adapter("h94/IP-Adapter", subfolder="sdxl_models", weight_name="ip-adapter_sdxl.bin")
20
 
 
30
  target="Load only style blocks",
31
  ):
32
 
33
+ torch.cuda.set_device(device)
34
  if target !="Load original IP-Adapter":
35
  if target=="Load only style blocks":
36
  scale = {