Spaces:
Running
on
A10G
Running
on
A10G
rynmurdock
commited on
Commit
•
dd52af4
1
Parent(s):
4ff37ea
Update app.py
Browse files
app.py
CHANGED
@@ -42,7 +42,7 @@ pipe.vae = AutoencoderTiny.from_pretrained("madebyollin/taesdxl", torch_dtype=to
|
|
42 |
pipe.scheduler = EulerDiscreteScheduler.from_config(pipe.scheduler.config, timestep_spacing="trailing")
|
43 |
pipe.to(device='cuda')
|
44 |
|
45 |
-
image_encoder = CLIPVisionModelWithProjection.from_pretrained('h94/IP-Adapter', subfolder='sdxl_models/image_encoder', torch_dtype=torch.float16).to(
|
46 |
pipe.unet._load_ip_adapter_weights(torch.load(hf_hub_download('h94/IP-Adapter', 'sdxl_models/ip-adapter_sdxl.bin'), map_location="cpu"))
|
47 |
pipe.register_modules(image_encoder = image_encoder)
|
48 |
|
|
|
42 |
pipe.scheduler = EulerDiscreteScheduler.from_config(pipe.scheduler.config, timestep_spacing="trailing")
|
43 |
pipe.to(device='cuda')
|
44 |
|
45 |
+
image_encoder = CLIPVisionModelWithProjection.from_pretrained('h94/IP-Adapter', subfolder='sdxl_models/image_encoder', torch_dtype=torch.float16).to("cuda")
|
46 |
pipe.unet._load_ip_adapter_weights(torch.load(hf_hub_download('h94/IP-Adapter', 'sdxl_models/ip-adapter_sdxl.bin'), map_location="cpu"))
|
47 |
pipe.register_modules(image_encoder = image_encoder)
|
48 |
|