releases.shpreview

v0.2.4

v0.2.4: Patch release

$npx -y @buildinternet/releases show rel_HCFfC1ZDTv854tggfwm_P

This patch release allows the Stable Diffusion pipelines to be loaded with float16 precision:

pipe = StableDiffusionPipeline.from_pretrained(
           "CompVis/stable-diffusion-v1-4", 
           revision="fp16", 
           torch_dtype=torch.float16, 
           use_auth_token=True
)
pipe = pipe.to("cuda")

The resulting models take up less than 6900 MiB of GPU memory.

  • [Loading] allow modules to be loaded in fp16 by @patrickvonplaten in #230

Fetched April 7, 2026