Model reference · open weights
PixArt-LCM-XL-2-1024-MS is an open-weight image model from PixArt-alpha. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | PixArt-alpha |
|---|---|
| Type | Image models |
| Task | Text→image |
| Parameters (lead) | 612M |
| Runs with | diffusers |
| Released | 2023-11-29 |
| Popularity | 45 downloads / month |
| Licence | Open weights |
About
Following LCM LoRA, we illustrative of the generation speed we achieve on various computers. Let us stress again how liberating it is to explore image generation so easily with PixArt-LCM.
| Hardware | PixArt-LCM (4 steps) | SDXL LoRA LCM (4 steps) | PixArt standard (14 steps) | SDXL standard (25 steps) |
|---|---|---|---|---|
| T4 (Google Colab Free Tier) | 3.3s | 8.4s | 16.0s | 26.5s |
| A100 (80 GB) | 0.51s | 1.2s | 2.2s | 3.8s |
| V100 (32 GB) | 0.8s | 1.2s | 5.5s | 7.7s |
These tests were run with a batch size of 1 in all cases.
For cards with a lot of capacity, such as A100, performance increases significantly when generating multiple images at once, which is usually the case for production workloads.
Pixart-α consists of pure transformer blocks for latent diffusion: It can directly generate 1024px images from text prompts within a single sampling process.
LCMs is a diffusion distillation method which predict PF-ODE's solution directly in latent space, achieving super fast inference with few steps.
Source code of PixArt-LCM is available at https://github.com/PixArt-alpha/PixArt-alpha.
For research purposes, we recommend our generative-models Github repository (https://github.com/PixArt-alpha/PixArt-alpha),
which is more suitable for developing both training and inference designs.
Hugging Face provides free Pixart-LCM inference.
Make sure to upgrade diffusers to >= 0.23.0:
pip install -U diffusers --upgrade
In addition make sure to install transformers, safetensors, sentencepiece, and accelerate:
pip install transformers accelerate safetensors sentencepiece
To just use the base model, you can run:
import torch
from diffusers import PixArtAlphaPipeline
# only 1024-MS version is supported for now
pipe = PixArtAlphaPipeline.from_pretrained("PixArt-alpha/PixArt-LCM-XL-2-1024-MS", torch_dtype=torch.float16, use_safetensors=True)
# Enable memory optimizations.
pipe.enable_model_cpu_offload()
prompt = "A small cactus with a happy face in the Sahara desert."
image = pipe(prompt, guidance_scale=0., num_inference_steps=4).images[0]
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:
pipe.transformer = torch.compile(pipe.transformer, mode="reduce-overhead", fullgraph=True)
If you are limited by GPU VRAM, you can enable cpu offloading by calling pipe.enable_model_cpu_offload
instead of .to("cuda"):
- pipe.to("cuda")
+ pipe.enable_model_cpu_offload()
The diffusers use here is totally the same as the base-model PixArt-α.
For more information on how to use Pixart-α with diffusers, please have a look at the Pixart-α Docs.
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.
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.
While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys pixart-lcm-xl-2-1024-ms for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (pixart-lcm-xl-2-1024-ms below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/images/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"pixart-lcm-xl-2-1024-ms","prompt":"a red bicycle","size":"1024x1024"}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.