Skip to content

Instantly share code, notes, and snippets.

View mchaker's full-sized avatar

M mchaker

View GitHub Profile
@mchaker
mchaker / improve-stablediffusion-pipeline-mem-mgmt.py
Created September 6, 2022 09:58 — forked from fladdict/gist:2115eb7ea32c9245e4f45642553aa3e9
Improve Diffuser Pipeline / StableDiffusion Memory Management
pipe = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", revision="fp16", torch_dtype=torch.float16, use_auth_token=True)
pipe = pipe.to("cuda")
img2imgPipe = StableDiffusionImg2ImgPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", revision="fp16", torch_dtype=torch.float16, use_auth_token=True)
img2imgPipe = img2imgPipe.to("cuda")
inpaintingPipe = StableDiffusionInpaintingPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", revision="fp16", torch_dtype=torch.float16, use_auth_token=True)
inpaintingPipe = inpaintingPipe.to("cuda")
@mchaker
mchaker / links-sd.md
Last active September 11, 2022 00:46
Stable Diffusion Links INDEX
@mchaker
mchaker / stable-diffusion-links_finetunes.md
Last active September 10, 2022 22:12
stable-diffusion-links: finetunes
@mchaker
mchaker / stable-diffusion-links_webuis.md
Last active September 24, 2022 12:55
stable-diffusion-links: web UIs
@mchaker
mchaker / stable-diffusion-links_guides.md
Last active September 14, 2022 12:48
stable-diffusion-links: guides
@mchaker
mchaker / stable-diffusion-links_hosted.md
Last active September 10, 2022 22:55
stable-diffusion-links: hosted environments