latent-consistency / lcm-sdxl

huggingface.co
Total runs: 1.4K
24-hour runs: 0
7-day runs: 27
30-day runs: 461
Model's Last Updated: November 12 2023
text-to-image

Introduction of lcm-sdxl

Model Details of lcm-sdxl

Latent Consistency Model (LCM): SDXL

Latent Consistency Model (LCM) was proposed in Latent Consistency Models: Synthesizing High-Resolution Images with Few-Step Inference by Simian Luo, Yiqin Tan et al. and Simian Luo , Suraj Patil , and Daniel Gu succesfully applied the same approach to create LCM for SDXL.

This checkpoint is a LCM distilled version of stable-diffusion-xl-base-1.0 that allows to reduce the number of inference steps to only between 2 - 8 steps .

Usage

LCM SDXL is supported in 🤗 Hugging Face Diffusers library from version v0.23.0 onwards. To run the model, first install the latest version of the Diffusers library as well as peft , accelerate and transformers . audio dataset from the Hugging Face Hub:

pip install --upgrade pip
pip install --upgrade diffusers transformers accelerate peft
Text-to-Image

The model can be loaded with it's base pipeline stabilityai/stable-diffusion-xl-base-1.0 . Next, the scheduler needs to be changed to LCMScheduler and we can reduce the number of inference steps to just 2 to 8 steps. Please make sure to either disable guidance_scale or use values between 1.0 and 2.0.

from diffusers import UNet2DConditionModel, DiffusionPipeline, LCMScheduler
import torch

unet = UNet2DConditionModel.from_pretrained("latent-consistency/lcm-sdxl", torch_dtype=torch.float16, variant="fp16")
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", unet=unet, torch_dtype=torch.float16, variant="fp16")

pipe.scheduler = LCMScheduler.from_config(pipe.scheduler.config)
pipe.to("cuda")

prompt = "a close-up picture of an old man standing in the rain"

image = pipe(prompt, num_inference_steps=4, guidance_scale=8.0).images[0]

Image-to-Image

Works as well! TODO docs

Inpainting

Works as well! TODO docs

ControlNet

Works as well! TODO docs

T2I Adapter

Works as well! TODO docs

Speed Benchmark

TODO

Training

TODO

Runs of latent-consistency lcm-sdxl on huggingface.co

1.4K
Total runs
0
24-hour runs
0
3-day runs
27
7-day runs
461
30-day runs

More Information About lcm-sdxl huggingface.co Model

More lcm-sdxl license Visit here:

https://choosealicense.com/licenses/openrail++

lcm-sdxl huggingface.co

lcm-sdxl huggingface.co is an AI model on huggingface.co that provides lcm-sdxl's model effect (), which can be used instantly with this latent-consistency lcm-sdxl model. huggingface.co supports a free trial of the lcm-sdxl model, and also provides paid use of the lcm-sdxl. Support call lcm-sdxl model through api, including Node.js, Python, http.

latent-consistency lcm-sdxl online free

lcm-sdxl huggingface.co is an online trial and call api platform, which integrates lcm-sdxl's modeling effects, including api services, and provides a free online trial of lcm-sdxl, you can try lcm-sdxl online for free by clicking the link below.

latent-consistency lcm-sdxl online free url in huggingface.co:

https://huggingface.co/latent-consistency/lcm-sdxl

lcm-sdxl install

lcm-sdxl is an open source model from GitHub that offers a free installation service, and any user can find lcm-sdxl on GitHub to install. At the same time, huggingface.co provides the effect of lcm-sdxl install, users can directly use lcm-sdxl installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

lcm-sdxl install url in huggingface.co:

https://huggingface.co/latent-consistency/lcm-sdxl

Url of lcm-sdxl

Provider of lcm-sdxl huggingface.co

latent-consistency
ORGANIZATIONS

Other API from latent-consistency