Kandinsky open-sources KVAE, a 3-modality tokenizer family matching Wan, FLUX and MovieGen

KVAE: Family of Tokenizers for Multimodal Generative Models

Andrey Shutkin, Denis Parkhomenko, Ivan Kirillov, Kirill Chernyshev, Kirill Malakhov, Ilia Vasiliev, Ilia Trushkin, Valeriya Kobenko, David Chikovani, Alexander Ivanov, Azat Saginbaev, Egor Silvestrov, Ivan Mikheev, Konstantin Zakharov

cs.CV, cs.LG, cs.SD

2026-08-06

Kandinsky's KVAE: continuous latent tokenizers for audio, image and video diffusion, matching or beating Wan, FLUX, HunyuanVideo and MovieGen at equal compression. Open weights.

What problem this solves

Latent diffusion models for images, video and audio share a first step: a tokenizer compresses the raw signal into a low-dimensional latent space, and the diffusion model generates inside that space. The tokenizer therefore sets a ceiling on generation quality, training speed and what the downstream model can learn. The standard way to judge a tokenizer is reconstruction fidelity, metrics like PSNR, LPIPS and PESQ. This paper rests on the claim that those numbers mislead: high reconstruction does not guarantee good downstream generation, a tension Yao et al. call the reconstruction-generation dilemma. Kandinsky Lab builds three tokenizers (audio, image, video) organized around a second property they call diffusability, meaning how friendly a latent space is to diffusion modeling.

Method

Three continuous-latent tokenizers:

Two design choices matter most. The decoder is deliberately asymmetric: the 4x16x16 model widens the decoder and thins the encoder, giving a 5.3x parameter ratio, because the decoder carries the generative load. And channel count is the sharpest knob trading reconstruction against generation. More channels reconstruct better but make the downstream diffusion model converge more slowly. The report is explicit that 64 channels is the optimum at the 0.6B generator scale, not an intrinsic property of audio latents.

Results

Video reconstruction (MCL-JCV 720p):

ModelCompressionChannelsPSNR
KVAE-3D4x8x81636.0
HunyuanVideo-1.04x8x81634.3
Wan-2.14x8x81634.3
KVAE-3D4x16x166435.2
HunyuanVideo-1.54x16x163234.4
Wan-2.24x16x164834.2

At equal compression KVAE is about 1 dB higher in PSNR and leads on SSIM.

Image reconstruction (OmniDoc-TokenBench, 3042 images): KVAE-2D-2.0 reaches PSNR 28.05 and SSIM 0.957, above FLUX.1-dev (26.24) and FLUX.2-dev (27.72). Its FID (1.74) is worse than both FLUX models (0.55, 0.73), so reconstruction is not a clean sweep.

Audio is the cleanest result. On reconstruction (AudioSet), KVAE-Audio posts MEL 0.537 and STFT 1.770, beating MMAudio, MovieGen's DACVAE and SAME-L, at 166.9M parameters versus 852.1M for SAME-L. For comparison, MMAudio's VAE reports a near-collapsed SI-SDR of -32.08. On generation (AudioCaps) KVAE-Audio leads on every metric, including CLAP 0.344 plus CE, perceptual quality and FAD, and human side-by-side win rates against every baseline sit between 0.54 and 0.74.

Why it matters

Kandinsky Lab ships weights, training recipes and ablations for all three tokenizers, which is a ready blueprint for anyone building their own latent diffusion. Numerically the family sits alongside or above frontier open tokenizers like Wan-2.2, HunyuanVideo, FLUX.2, MovieGen, StableAudio and MMAudio. More useful than the leaderboard is the methodological message: pick tokenizers by diffusability, not reconstruction alone, and treat channel count and encoder-decoder symmetry as explicit reconstruction-generation trade-offs. Those are lessons that only come from training the full stack.

Limitations

Every "matches the frontier" claim comes from the authors' own evaluation on their own downstream generators (0.6B for audio, 2B for image), with no third-party reproduction and no head-to-head against closed systems. On the image side KVAE loses FID and LPIPS to FLUX, so the lead is not universal. The report admits that model-based aesthetic predictors are not independent of the systems they score. And the 64-channel optimum is validated only at 0.6B; how it holds at larger generator scale is untested.

Terms

Source

What people are saying

Related papers

All paper explainers