Buckets:
DiT
Scalable Diffusion Models with Transformers (DiT) is by William Peebles and Saining Xie.
The abstract from the paper is:
We explore a new class of diffusion models based on the transformer architecture. We train latent diffusion models of images, replacing the commonly-used U-Net backbone with a transformer that operates on latent patches. We analyze the scalability of our Diffusion Transformers (DiTs) through the lens of forward pass complexity as measured by Gflops. We find that DiTs with higher Gflops -- through increased transformer depth/width or increased number of input tokens -- consistently have lower FID. In addition to possessing good scalability properties, our largest DiT-XL/2 models outperform all prior diffusion models on the class-conditional ImageNet 512x512 and 256x256 benchmarks, achieving a state-of-the-art FID of 2.27 on the latter.
The original codebase can be found at facebookresearch/dit.
Make sure to check out the Schedulers guide to learn how to explore the tradeoff between scheduler speed and quality, and see the reuse components across pipelines section to learn how to efficiently load the same components into multiple pipelines.
DiTPipeline[[diffusers.DiTPipeline]]
diffusers.DiTPipeline[[diffusers.DiTPipeline]]
Pipeline for image generation based on a Transformer backbone instead of a UNet.
This model inherits from DiffusionPipeline. Check the superclass documentation for the generic methods implemented for all pipelines (downloading, saving, running on a particular device, etc.).
__call__diffusers.DiTPipeline.__call__https://github.com/huggingface/diffusers/blob/vr_12652/src/diffusers/pipelines/dit/pipeline_dit.py#L101[{"name": "class_labels", "val": ": list"}, {"name": "guidance_scale", "val": ": float = 4.0"}, {"name": "generator", "val": ": torch._C.Generator | list[torch._C.Generator] | None = None"}, {"name": "num_inference_steps", "val": ": int = 50"}, {"name": "output_type", "val": ": str | None = 'pil'"}, {"name": "return_dict", "val": ": bool = True"}]- class_labels (list[int]) -- list of ImageNet class labels for the images to be generated.
- guidance_scale (
float, optional, defaults to 4.0) -- A higher guidance scale value encourages the model to generate images closely linked to the textpromptat the expense of lower image quality. Guidance scale is enabled whenguidance_scale > 1. - generator (
torch.Generator, optional) -- Atorch.Generatorto make generation deterministic. - num_inference_steps (
int, optional, defaults to 250) -- The number of denoising steps. More denoising steps usually lead to a higher quality image at the expense of slower inference. - output_type (
str, optional, defaults to"pil") -- The output format of the generated image. Choose betweenPIL.Imageornp.array. - return_dict (
bool, optional, defaults toTrue) -- Whether or not to return a ImagePipelineOutput instead of a plain tuple.0ImagePipelineOutput ortupleIfreturn_dictisTrue, ImagePipelineOutput is returned, otherwise atupleis returned where the first element is a list with the generated images
The call function to the pipeline for generation.
Examples:
>>> from diffusers import DiTPipeline, DPMSolverMultistepScheduler
>>> import torch
>>> pipe = DiTPipeline.from_pretrained("facebook/DiT-XL-2-256", torch_dtype=torch.float16)
>>> pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
>>> pipe = pipe.to("cuda")
>>> # pick words from Imagenet class labels
>>> pipe.labels # to print all available words
>>> # pick words that exist in ImageNet
>>> words = ["white shark", "umbrella"]
>>> class_ids = pipe.get_label_ids(words)
>>> generator = torch.manual_seed(33)
>>> output = pipe(class_labels=class_ids, num_inference_steps=25, generator=generator)
>>> image = output.images[0] # label 'white shark'
Parameters:
transformer (DiTTransformer2DModel) : A class conditioned DiTTransformer2DModel to denoise the encoded image latents. Initially published as Transformer2DModel in the config, but the mismatch can be ignored.
vae (AutoencoderKL) : Variational Auto-Encoder (VAE) model to encode and decode images to and from latent representations.
scheduler (DDIMScheduler) : A scheduler to be used in combination with transformer to denoise the encoded image latents.
Returns:
[ImagePipelineOutput](/docs/diffusers/pr_12652/en/api/pipelines/ddim#diffusers.ImagePipelineOutput) or tuple``
If return_dict is True, ImagePipelineOutput is returned, otherwise a tuple is
returned where the first element is a list with the generated images
get_label_ids[[diffusers.DiTPipeline.get_label_ids]]
Map label strings from ImageNet to corresponding class ids.
Parameters:
label (str or dict of str) : Label strings to be mapped to class ids.
Returns:
list` of `int
Class ids to be processed by pipeline.
ImagePipelineOutput[[diffusers.ImagePipelineOutput]]
diffusers.ImagePipelineOutput[[diffusers.ImagePipelineOutput]]
Output class for image pipelines.
Parameters:
images (List[PIL.Image.Image] or np.ndarray) : List of denoised PIL images of length batch_size or NumPy array of shape (batch_size, height, width, num_channels).
Xet Storage Details
- Size:
- 6.66 kB
- Xet hash:
- b4ff74fee952822386d158f98f3318ba58e4e89848240a73e71aa3922d3bafa5
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.