Stable Diffusion library, based on the implementation in ComfyUI
Project description
This is a work in progress
All the talk about having a reliable interface below is aspirational. The interface is in flux at the moment, and no guarantee of the master branch working are made, yet. Soon.
This was initially planned to be a fork of ComfyUI, with regular merges from upstream. However, we are quickly realizing that's impractical, given the rapid development in the ComfyUI codebase. So, this is a hard fork. We will make a strong effort to keep parity, but we will also be going our own way here and the implementation will probably end up quite different.
This is the ComfyUI, but without the UI. It's stripped down and packaged as a library, for use in other projects.
ComfyUI is actively maintained (as of writing), and has implementations of a lot of the cool cutting-edge Stable Diffusion stuff.
In order to provide a consistent API, an interface layer has been added. Directly importing names not in the API should be considered dangerous. A best effort will be made to keep this library apace with the implementation in ComfyUI (though this will get harder over time as the implemntations diverge) so the backend implementation might change drastically between minor versions.
The interface layer will be consistent within a major version of the library, so that's what you should rely on.
Design goals
- The API should expose the same breadth of functionality available by using the node editor in ComfyUI.
- Opaque types should be preferred. Rather than pass tensors around, we're going to wrap them in objects that hide the implementation. This gives us maximum flexibility to keep the API the same, while also incorporating new developments.
- Explicit behavior should be prferred over implicit behavior. As a library, we shouldn't make assumptions about how the user wants to, for example, sanitize inputs or manage VRAM. At the cost of requiring a bit more work to use, we should raise exceptions when we get bad input, offer an interface for moving things to and from VRAM, etc.
- The API should be should be typed as strictly as possible. Enums should be used instead of strings, when applicable, etc.
- The interface layer should have complete test coverage.
Installation
You can install from github:
pip3 install git+https://github.com/adodge/ComfyLib
You may also be able to install from PyPi, but that process will be clarified when this project is more stable.
Example
import comfy.stable_diffusion
import comfy.latent_image
config = comfy.stable_diffusion.CheckpointConfig.from_built_in(comfy.stable_diffusion.BuiltInCheckpointConfigName.V1)
# Read in a checkpoint
sd, clip, vae = comfy.stable_diffusion.load_checkpoint(
config=config,
checkpoint_filepath="v1-5-pruned-emaonly.safetensors",
embedding_directory=None,
)
# CLIP encode a prompt
pos = clip.encode("an astronaut")
neg = clip.encode("")
# Run the sampler
latent0 = comfy.latent_image.LatentImage.empty(512, 512)
latent1 = sd.sample(positive=pos, negative=neg, latent_image=latent0, seed=42, steps=20, cfg_strength=7,
sampler=comfy.stable_diffusion.Sampler.SAMPLE_EULER, scheduler=comfy.stable_diffusion.Scheduler.NORMAL,
denoise_strength=1.0)
# Run the VAE to get a Pillow Image
image = vae.decode(latent_image=latent1)
# Save that to a file
image.save("out.png")
API
Models
StableDiffusionModel
CLIPModel
VAEModel
Data
RGBImage
GreyscaleImage
LatentImage
Conditioning
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file comfylib-0.0.5.tar.gz
.
File metadata
- Download URL: comfylib-0.0.5.tar.gz
- Upload date:
- Size: 679.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1aeced0621da732b7f1f42cc23438bf036814c0cd08c69d6765be33163371621 |
|
MD5 | 0301bba5df50d0901055a827fd9e4309 |
|
BLAKE2b-256 | abd8d3055647259a9e166b2f3368753539822d4ee3e45b7cb53b0713a229bcee |
File details
Details for the file comfylib-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: comfylib-0.0.5-py3-none-any.whl
- Upload date:
- Size: 724.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1099733efabfe296bf4651fa45901c26390e44111a1c031192b3fd2c8b617da6 |
|
MD5 | 0b25add840abe981863d65847afa5615 |
|
BLAKE2b-256 | 776456f0d85856bdf9ee6140cd37e9481b6ef0992b7511cd3b269747bcb40488 |