Overview of PRXPixel (Photoroom PRX-7B)
mainPRXPixel is a ~7B parameter pixel-space diffusion transformer integration for ai-toolkit. Unlike typical latent flow-matching models, it operates directly in pixel space without a VAE.
Key technical characteristics:
- Pixel Space: It denoises raw RGB images (
in_channels=3,patch_size=16). The implementation uses aFakeVAE(identity, scaling 1) so that 'latents' are simply the image in the[-1, 1]range. - x-prediction: The model predicts the clean image
x0rather than the flow velocity. The conversion fromx0to velocity occurs only during sampling. - Noise Scaling: It uses a
noise_scale = 2.0, meaning it trains and samples fromrandn * 2.0instead of unit noise. - Text Encoding: Uses the Qwen3-VL text tower (
Qwen3VLTextModel) with a hidden size of 2048, padded to 256 tokens.