Releases: wbruna/stable-diffusion.cpp
Releases · wbruna/stable-diffusion.cpp
master-7eb30d0
feat: add missing models and parameters to image metadata (#743) * feat: add new scheduler types, clip skip and vae to image embedded params - If a non default scheduler is set, include it in the 'Sampler' tag in the data embedded into the final image. - If a custom VAE path is set, include the vae name (without path and extension) in embedded image params under a `VAE:` tag. - If a custom Clip skip is set, include that Clip skip value in embedded image params under a `Clip skip:` tag. * feat: add separate diffusion and text models to metadata --------- Co-authored-by: one-lithe-rune <[email protected]>
master-eed97a5
sync: update ggml
master-1896b28
fix: make --taesd work (#731)
master-a772dca
feat: add Instruct-Pix2pix/CosXL-Edit support (#679) * Instruct-p2p support * support 2 conditionings cfg * Do not re-encode the exact same image twice * fixes for 2-cfg * Fix pix2pix latent inputs + improve inpainting a bit + fix naming * prepare for other pix2pix-like models * Support sdxl ip2p * fix reference image embeddings * Support 2-cond cfg properly in cli * fix typo in help * Support masks for ip2p models * unify code style * delete unused code * use edit mode * add img_cond * format code --------- Co-authored-by: leejet <[email protected]>
master-dafc32d
feat: add support for f64/i64 and clip_g diffusers model (#681)
master-1ce1c1a
feat: make lora graph size variable
master-19fbfd8
feat: override text encoders for unet models (#682)
master-3bae667
fix: break the line after skipping tensors in VAE (#591)
master-7a8ff2e
docs: add golang cgo bindings to README (#635)
bleedingedge-ac708e8
non-square VAE tiling (#3) * refactor tile number calculation * support non-square tiles * add env var to change tile overlap * add safeguards and better error messages for SD_TILE_OVERLAP * add safeguards and include overlapping factor for SD_TILE_SIZE * avoid rounding issues when specifying SD_TILE_SIZE as a factor * lower SD_TILE_OVERLAP limit