PixArt-Σ consists of pure transformer blocks for latent diffusion:
It can directly generate 1024px, 2K and 4K images from text prompts within a single sampling process.
Model Description: This is a model that can be used to generate and modify images based on text prompts.
It is a Transformer Latent Diffusion Model that uses one fixed, pretrained text encoders (T5)
and one latent feature encoder (VAE).
For research purposes, we recommend our generative-models Github repository (https://github.com/PixArt-alpha/PixArt-sigma),
which is more suitable for both training and inference and for which most advanced diffusion sampler like SA-Solver will be added over time.
Hugging Face provides free PixArt-Σ inference.
1import torch
2from diffusers import Transformer2DModel, PixArtSigmaPipeline
34device = torch.device("cuda:0"if torch.cuda.is_available()else"cpu")5weight_dtype = torch.float16
67pipe = PixArtSigmaPipeline.from_pretrained(8"PixArt-alpha/PixArt-Sigma-XL-2-1024-MS",9 torch_dtype=weight_dtype,10 use_safetensors=True,11)12pipe.to(device)1314# Enable memory optimizations.15# pipe.enable_model_cpu_offload()1617prompt ="A small cactus with a happy face in the Sahara desert."18image = pipe(prompt).images[0]19image.save("./catcus.png")
When using torch >= 2.0, you can improve the inference speed by 20-30% with torch.compile. Simple wrap the unet with torch compile before running the pipeline:
For more information on how to use PixArt-Σ with diffusers, please have a look at the PixArt-Σ Docs.
Uses
Direct Use
The model is intended for research purposes only. Possible research areas and tasks include
Generation of artworks and use in design and other artistic processes.
Applications in educational or creative tools.
Research on generative models.
Safe deployment of models which have the potential to generate harmful content.
Probing and understanding the limitations and biases of generative models.
Excluded uses are described below.
Out-of-Scope Use
The model was not trained to be factual or true representations of people or events, and therefore using the model to generate such content is out-of-scope for the abilities of this model.
Limitations and Bias
Limitations
The model does not achieve perfect photorealism
The model cannot render legible text
The model struggles with more difficult tasks which involve compositionality, such as rendering an image corresponding to “A red cube on top of a blue sphere”
fingers, .etc in general may not be generated properly.
The autoencoding part of the model is lossy.
Bias
While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.