dg845/diffusers-cd_cat256_lpips
07
1---2license: mit3tags:4- generative model5- unconditional image generation6---7Consistency models are a new class of generative models introduced in ["Consistency Models"](https://arxiv.org/abs/2303.01469) ([paper](https://arxiv.org/pdf/2303.01469.pdf), [code](https://github.com/openai/consistency_models)) by Yang Song, Prafulla Dhariwal, Mark Chen, and Ilya Sutskever.8From the paper abstract:9 10> Diffusion models have significantly advanced the fields of image, audio, and video generation, but11they depend on an iterative sampling process that causes slow generation. To overcome this limitation,12we propose consistency models, a new family of models that generate high quality samples by directly13mapping noise to data. They support fast one-step generation by design, while still allowing multistep14sampling to trade compute for sample quality. They also support zero-shot data editing, such as image15inpainting, colorization, and super-resolution, without requiring explicit training on these tasks.16Consistency models can be trained either by distilling pre-trained diffusion models, or as standalone17generative models altogether. Through extensive experiments, we demonstrate that they outperform18existing distillation techniques for diffusion models in one- and few-step sampling, achieving the new19state-of-the-art FID of 3.55 on CIFAR-10 and 6.20 on ImageNet 64 x 64 for one-step generation. When20trained in isolation, consistency models become a new family of generative models that can outperform21existing one-step, non-adversarial generative models on standard benchmarks such as CIFAR-10, ImageNet2264 x 64 and LSUN 256 x 256.23 24Intuitively, a consistency model can be thought of as a model which, when evaluated on a noisy image and timestep, returns an output image sample similar to that which would be returned by running a sampling algorithm on a diffusion model.25Consistency models can be parameterized by any neural network whose input has the same dimensionality as its output, such as a U-Net.26 27More precisely, given a teacher diffusion model and fixed sampler, we can train ("distill") a consistency model such that when it is given a noisy image and its corresponding timestep, the output sample of the consistency model will be close to the output that would result by using the sampler on the diffusion model to produce a sample, starting at the same noisy image and timestep.28The authors call this procedure "consistency distillation (CD)".29Consistency models can also be trained from scratch to generate clean images from a noisy image and timestep, which the authors call "consistency training (CT)".30 31This model is a `diffusers`-compatible version of the [cd_cat256_lpips.pt](https://github.com/openai/consistency_models#pre-trained-models) checkpont from the [original code and model release](https://github.com/openai/consistency_models).32This model was distilled (via consistency distillation (CD)) from an [EDM model](https://arxiv.org/pdf/2206.00364.pdf) trained on the LSUN Cat 256x256 dataset, using [LPIPS](https://richzhang.github.io/PerceptualSimilarity/) as the measure of closeness.33See the [original model card](https://github.com/openai/consistency_models/blob/main/model-card.md) for more information.34 35## Download36 37The original PyTorch model checkpoint can be downloaded from the [original code and model release](https://github.com/openai/consistency_models#pre-trained-models). 38 39The `diffusers` pipeline for the `cd_cat256_lpips` model can be downloaded as follows:40 41```python42from diffusers import ConsistencyModelPipeline43 44pipe = ConsistencyModelPipeline.from_pretrained("dg845/diffusers-cd_cat256_lpips")45```46 47## Usage48 49The original model checkpoint can be used with the [original consistency models codebase](https://github.com/openai/consistency_models).50 51Here is an example of using the `cd_cat256_lpips` checkpoint with `diffusers`:52 53```python54import torch55 56from diffusers import ConsistencyModelPipeline57 58device = "cuda"59# Load the cd_cat256_lpips checkpoint.60model_id_or_path = "dg845/diffusers-cd_cat256_lpips"61pipe = ConsistencyModelPipeline.from_pretrained(model_id_or_path, torch_dtype=torch.float16)62pipe.to(device)63 64# Onestep Sampling65image = pipe(num_inference_steps=1).images[0]66image.save("cd_cat256_lpips_onestep_sample.png")67 68# Multistep sampling69# Timesteps can be explicitly specified; the particular timesteps below are from the original Github repo:70# https://github.com/openai/consistency_models/blob/main/scripts/launch.sh#L8371image = pipe(num_inference_steps=None, timesteps=[17, 0]).images[0]72image.save("cd_cat256_lpips_multistep_sample.png")73```74 75## Model Details76- **Model type:** Consistency model unconditional image generation model, distilled from a diffusion model77- **Dataset:** LSUN Cat 256x25678- **License:** MIT79- **Model Description:** This model performs unconditional image generation. Its main component is a U-Net, which parameterizes the consistency model. This model was distilled by the Consistency Model authors from an EDM diffusion model, also originally trained by the authors.80- **Resources for more information:**: [Paper](https://arxiv.org/abs/2303.01469), [GitHub Repository](https://github.com/openai/consistency_models), [Original Model Card](/openai/consistency_models/blob/main/model-card.md)81 82## Datasets83 84_Note: This section is taken from the ["Datasets" section of the original model card](https://github.com/openai/consistency_models/blob/main/model-card.md#datasets)_.85 86The models that we are making available have been trained on the [ILSVRC 2012 subset of ImageNet](http://www.image-net.org/challenges/LSVRC/2012/) or on individual categories from [LSUN](https://arxiv.org/abs/1506.03365). Here we outline the characteristics of these datasets that influence the behavior of the models:87 88**ILSVRC 2012 subset of ImageNet**: This dataset was curated in 2012 and has around a million pictures, each of which belongs to one of 1,000 categories. A significant number of the categories in this dataset are animals, plants, and other naturally occurring objects. Although many photographs include humans, these humans are typically not represented by the class label (for example, the category "Tench, tinca tinca" includes many photographs of individuals holding fish).89 90**LSUN**: This dataset was collected in 2015 by a combination of human labeling via Amazon Mechanical Turk and automated data labeling. Both classes that we consider have more than a million images. The dataset creators discovered that when assessed by trained experts, the label accuracy was approximately 90% throughout the entire LSUN dataset. The pictures are gathered from the internet, and those in the cat class often follow a "meme" format. Occasionally, people, including faces, appear in these photographs.91 92## Performance93 94_Note: This section is taken from the ["Performance" section of the original model card](https://github.com/openai/consistency_models/blob/main/model-card.md#performance)_.95 96These models are intended to generate samples consistent with their training distributions.97This has been measured in terms of FID, Inception Score, Precision, and Recall.98These metrics all rely on the representations of a [pre-trained Inception-V3 model](https://arxiv.org/abs/1512.00567),99which was trained on ImageNet, and so is likely to focus more on the ImageNet classes (such as animals) than on other visual features (such as human faces).100 101## Intended Use102 103_Note: This section is taken from the ["Intended Use" section of the original model card](https://github.com/openai/consistency_models/blob/main/model-card.md#intended-use)_.104 105These models are intended to be used for research purposes only. In particular, they can be used as a baseline for generative modeling research, or as a starting point for advancing such research. These models are not intended to be commercially deployed. Additionally, they are not intended to be used to create propaganda or offensive imagery.106 107## Limitations108 109_Note: This section is taken from the ["Limitations" section of the original model card](https://github.com/openai/consistency_models/blob/main/model-card.md#limitations)_.110 111These models sometimes produce highly unrealistic outputs, particularly when generating images containing human faces.112This may stem from ImageNet's emphasis on non-human objects.113 114In consistency distillation and training, minimizing LPIPS results in better sample quality, as evidenced by improved FID and Inception scores. However, it also carries the risk of overestimating model performance, because LPIPS uses a VGG network pre-trained on ImageNet, while FID and Inception scores also rely on convolutional neural networks (the Inception network in particular) pre-trained on the same ImageNet dataset. Although these two convolutional neural networks do not share the same architecture and we extract latents from them in substantially different ways, knowledge leakage is still plausible which can undermine the fidelity of FID and Inception scores.115 116Because ImageNet and LSUN contain images from the internet, they include photos of real people, and the model may have memorized some of the information contained in these photos. However, these images are already publicly available, and existing generative models trained on ImageNet have not demonstrated significant leakage of this information.