Pith. sign in

REVIEW 3 major objections 4 minor 20 references

Compressed Image Generation with Denoising Diffusion Codebook Models

T0 review · 3 major / 4 minor · reviewed 2026-08-09 · deepseek-v4-flash

Pith's one-line read The paper claims that diffusion sampling can be driven by tiny fixed codebooks of Gaussian vectors, preserving generation quality and giving every image a lossless bit-stream that also makes a state-of-the-art low-rate perceptual codec.

desk verdict A simple, clever mechanism—replacing Gaussian noise with fixed codebook vectors—that turns pretrained diffusion models into perceptual codecs; empirically strong, theoretically thin. read the letter →

arxiv 2502.01189 v4 pith:EII7SGHC submitted 2025-02-03 eess.IV cs.AIcs.CVcs.ITeess.SPmath.IT

classification eess.IVcs.AIcs.CVcs.ITeess.SPmath.IT
keywords denoisingdiffusionprobabilisticmodelscodebooksamplinglosslessimagebit-streamsperceptualcompressioncompressedconditionalgenerationrestorationposteriormatchingpursuit
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that the continuous Gaussian noise used in denoising diffusion sampling is largely redundant: replacing each draw with one of $K$ fixed codebook vectors, chosen at random, preserves sample quality and diversity at $K=64$. The same machinery becomes a lossy image codec when the codebook vectors are chosen greedily to align with the residual between a target image and the model's current estimate. The paper claims this codec achieves state-of-the-art perceptual quality at low bit rates while also producing a lossless index representation of every generated image. It further claims a general framework for compressed conditional generation, with Proposition 6.1 connecting the selection rule to posterior sampling in the $K\to\infty$ limit.

What carries the argument

The load-bearing object is a chain of fixed codebooks: for each reverse step $i$ there is a set $C_i$ of $K$ vectors sampled once from $\mathcal{N}(0,I)$ and never updated. Sampling uses $x_{i-1}=\mu_i(x_i)+\sigma_i C_i(k_i)$, so the only stochasticity is the index sequence; compression and conditional generation reduce to choosing $k_i$ by Eq. (7) or Eq. (8). The matching-pursuit variant refines each chosen noise as a convex combination of $M$ codebook entries to raise the bit rate, and Proposition 6.1 identifies the $K\to\infty$ limit of the posterior-matching loss with a probability-flow ODE, giving the selection rules a score-based interpretation.

What would settle it

A controlled ablation with the same fixed codebooks could, at a randomly chosen small fraction of steps, replace the greedy rule with the worst-matching codebook entry; if the decoded image's PSNR and FID barely move, the selection rule is not load-bearing, whereas a large drop would confirm that it is.

Watch

Extended reading notes

Core claim

DDCM replaces the standard Gaussian noise $z_i$ in the DDPM update with $C_i(k_i)$, a vector from a fixed codebook of $K$ i.i.d. Gaussian vectors per timestep, and uses the index sequence as the compressed representation. The paper shows empirically that this discrete process matches DDPM's FID at $K=64$ on ImageNet 256 and on MS-COCO with Stable Diffusion 2.1, and that as a codec it selects $k_i=\arg\max_{k}\langle C_i(k), x_0-\hat{x}_{0|i}\rangle$, achieving lower FID and LPIPS than prior methods at roughly $0.03$--$0.15$ bits per pixel. For conditional generation it chooses indices by minimizing a task loss; with the loss $\|C_i(k)-\sigma_i\nabla_{x_i}\log p_i(y|x_i)\|^2$, the paper proves that as $K\to\infty$ the process becomes a discretization of the probability-flow ODE over the posterior $p_0(x_0|y)$. Image compression is a special case with $y=x_0$, so the same codebook sampling produces both a sample and its bit-stream.

Load-bearing premise

The greedy per-step index rule is assumed to keep the whole trajectory close to the target, while the only proven statement is a $K\to\infty$ limit for a related loss; if locally optimal choices compound into large drift, the codec and restoration claims weaken.

Editorial extensions

If this is right

  • Any pre-trained DDPM can be converted into a codec or conditional sampler without retraining, because only the sampling-time noise source and the index rule change.
  • Every image produced by DDCM carries a lossless index bit-stream of $(T-1)\log_2(K)$ bits, so repeated decoding with the same indices reproduces it exactly.
  • At low bit rates the codec scores lower FID and LPIPS than prior perceptual methods on Kodak, DIV2K, CLIC2020, and ImageNet while maintaining competitive PSNR.
  • For inverse problems, restored images are generated together with compressed bit-streams, and the paper reports better perceptual quality than DPS and DDNM in colorization and $4\times$ super-resolution.
  • With the posterior-matching loss, the $K\to\infty$ limit of the selection rule is a probability-flow ODE over the posterior, placing compression and conditional generation under one theoretical umbrella.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The paper notes that DDCM indices form an image tokenization; a concrete next step it does not take is training a sequence model to predict those indices from text, which would make a pre-trained diffusion backbone text-conditional without fine-tuning it.
  • Because the index rule is gradient-free and can optimize any per-image criterion, the same codec could be applied to non-differentiable quality metrics beyond NIQE and TOPIQ, and to video by coding residual index differences between frames.
  • Entropy coding the index stream, learned dictionary codebooks, or shared codebooks across timesteps would cut bit rate without changing the core mechanism; the paper lists these as future work but does not quantify them.
  • The $K\to\infty$ equivalence suggests a scaling study: measuring how FID and codec distortion vary as $K$ increases would quantify how redundant the continuous Gaussian noise space really is; the paper does not run that analysis.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper introduces Denoising Diffusion Codebook Models (DDCM), which replace the continuous Gaussian noise draws in DDPM reverse sampling with entries from fixed, pre-sampled codebooks of iid Gaussian vectors (Eq. (6)). The authors show empirically that DDCM retains DDPM-level sample quality in both pixel and latent spaces even at codebook size K=64. They then turn DDCM into a lossy image codec by selecting, at each reverse step, the codebook entry with the largest inner product with the residual between the target image and the current denoised estimate (Eq. (7)). They report state-of-the-art perceptual compression at low bit rates across several datasets and compare favourably to many baselines. The framework is extended to compressed conditional generation, including image restoration and face restoration, with an accompanying asymptotic interpretation (Prop. 6.1) and several guidance variants. The paper includes code and a demo.

Significance. If the empirical claims hold, the paper makes a useful and surprising contribution: the continuous noise space of DDPMs is highly redundant, and a discrete codebook representation can simultaneously serve as a generative latent space and as a zero-shot lossy codec. The codec is practical, requires no training for the pre-trained diffusion model, and the index-stream representation is directly interpretable. The paper also provides a promising framework for compressed conditional generation. The main weaknesses are that the theoretical proposition is asymptotic and does not cover the finite-K greedy selection used in practice, and that the state-of-the-art claim is unqualified despite documented underperformance at high bit rates. The empirical results, if accompanied by the requested ablations and qualifications, would be a solid contribution.

major comments (3)
  1. [Sec. 6, Prop. 6.1; App. C.1.2] The proof of Proposition 6.1 derives the update xi−1 = xi − fi(xi) + g_i^2 ∇ log p_i(x_i|y) (Eq. (28)) and calls it a discretization of the probability flow ODE (Eq. (18)). However, the probability flow ODE in Eq. (18) has score coefficient g^2/2, not g^2. The derived update is a deterministic discretization of the reverse-time SDE (Eq. (17)) with the stochastic term replaced by its conditional mean, not a discretization of the probability flow ODE. As written, the proposition is not established; please correct the statement or adjust the coefficient, or rephrase it as an approximation of the reverse-time SDE with zeroed noise.
  2. [Sec. 5, Eq. (7); Sec. 7] The compression codec's success rests on the greedy per-step selection rule (7), but the paper provides no finite-K analysis of this rule. Proposition 6.1 covers the related loss (9) only in the K→∞ limit, and Sec. 7 explicitly disclaims a theoretical explanation for the selection strategies. In the operating regime (e.g., K=16, latent dimension n≈10^4), the expected cosine similarity between a selected codebook vector and the residual is about sqrt(2 log K / n) ≈ 0.02, so the per-step signal is weak, and errors can compound over T=1000 steps. I recommend adding an ablation that compares Eq. (7) with a one-step look-ahead or short-horizon selection on at least one dataset; this would indicate whether the reported rate-distortion-perception numbers depend on the unproven compounding assumption.
  3. [Abstract; Sec. 5] The abstract's claim of 'state-of-the-art perceptual image compression results' is unqualified, but the paper's own results in Fig. 5 and Tables 2–5 show that at the highest bit rates DDCM underperforms several baselines (for example, on Kodak24, PerCo (SD) and CRDR-R achieve lower FID and higher PSNR than Ours at approximately 0.13–0.15 BPP in Table 3). Please qualify the claim to the low-to-mid bit-rate regime in the abstract and in the conclusions.
minor comments (4)
  1. [App. B.5, Eqs. (13)–(15)] The text describes the matching-pursuit refinement as a 'convex combination' of codebook entries, but after the renormalization in Eq. (15) the transmitted coefficients no longer form a convex combination; please rephrase or justify the terminology.
  2. [Sec. 5, bit-rate formula] The bit-stream length formula (T−1)(log2(K)M + C(M−1)) treats C as a number of bits per coefficient, while App. B.5 defines C as the number of quantization levels; the formula should involve ceil(log2 C), or the text should clearly state that C is the number of bits per coefficient.
  3. [Tables 2–7] The paper reports all metrics as single point estimates without stating whether they come from one evaluation or are averaged over multiple runs or seeds; for FID computed over random subsets, please provide the number of subsets or confidence intervals, or explicitly note that the codebooks are fixed and the evaluations are deterministic.
  4. [App. C.2, Eq. (37)] In the derivation of the equivalence between Eq. (7) and the L_P loss, the factor σ_i√(ᾱ_i)/(1−ᾱ_i) appears in Eq. (37) but is dropped inconsistently before reaching Eq. (44); please verify the algebra or define the scaling convention explicitly.

Circularity Check

0 steps flagged · score 2.0 of 10

No circular reduction found; the codec and sampling claims are evaluated against external baselines, and the theoretical Proposition 6.1 is an explicit consistency interpretation rather than a derivation of finite-K success.

full rationale

The derivation chain is self-contained. The index selection rule in Eq. (7) is an explicit, greedy rule defined by the paper and then evaluated empirically against external codecs; it is not a fitted parameter renamed as a prediction. Proposition 6.1 is a limit statement: when L is set to LP in Eq. (9), the chosen codebook vector converges to the posterior score correction as K tends to infinity, so the process becomes a posterior probability-flow ODE. This follows directly from the definition of LP and is honestly labeled a mathematical interpretation; the paper explicitly disclaims any theoretical explanation of finite-K behavior in Sec. 7 ('our work does not explain theoretically why DDCM sampling and our simple index selection strategies work so effectively'). That disclaimer forecloses any reading of Prop. 6.1 as the source of the empirical compression results. The only self-citations are comparison baselines from the same group, notably PSC (Elata et al., 2024) and PMRF (Ohayon et al., 2025), but the central state-of-the-art claims rest on external baselines such as BPG, HiFiC, PerCo (SD), ILLM, CRDR, and IPIC. These self-citations are not load-bearing, so the paper contains no significant circularity; at most, there is minor non-load-bearing self-citation.

Assumptions & free parameters 5 free parameters · 6 assumptions · 1 invented entities

The central mechanism rests on standard diffusion score-matching theory plus the assumption that finite fixed codebooks approximate continuous Gaussian noise well. There are no fitted constants in the derivation; however, the method requires hand-set hyperparameters (K, T, M, C, λ) and several domain assumptions in the conditional generation extensions.

free parameters (5)
  • Codebook size K = varies: 2,4,8,16,64 (generation); 16 to 8192 (compression)
    Number of fixed noise vectors per timestep; controls bit rate and quality; no theory predicts the best K.
  • Number of sampling timesteps T = 300, 500, or 1000 depending on experiment
    Sets bit-stream length; latent-space experiments use T=1000 with adapted codebook subsets.
  • Matching pursuit parameters M and C = M in {2,3,4,5,6}; C=3
    Refine selected noise at high bit rates; chosen empirically to reach higher BPP.
  • Perception-distortion weight lambda = 1
    Balances MSE against NR-IQA in face restoration (Eq. 12).
  • Guidance scales = CFG 3 for latent evaluation; classifier guidance 1 for pixel evaluation
    Standard DDM hyperparameters inherited from prior work.
assumptions (6)
  • standard math A well-trained score model s_i(x_i) = ∇ log p_i(x_i) makes the DDPM reverse update (Eq. 2) a valid sampler from p0.
    Background from Ho et al. 2020 and Song et al. 2020, used throughout Secs. 3-4.
  • standard math K iid N(0,I) codebook vectors become dense in R^n as K→∞, so the minimum distance to any fixed vector tends to 0.
    Used in App. C.1.2, Eq. (22)-(23), to prove Prop. 6.1.
  • standard math High-dimensional codebook vectors have nearly constant squared norm (chi-squared concentration), so Eq. (7) approximates the LP loss.
    App. C.2, final paragraph, justifies replacing the norm term with a constant.
  • domain assumption The conditional likelihood p_i(y|x_i) is approximated as a multivariate Gaussian centered at A x_i, making Eq. (10) a proxy for the posterior score.
    Sec. 6.1, following Jalal et al. 2021; needed for the restoration experiments.
  • domain assumption The face restoration method assumes r(y) ≈ E[x0|y] is a good MMSE approximation, allowing test-time optimization without ground truth.
    Sec. 6.2 and App. C.4.1, Eq. (47).
  • domain assumption Pre-trained DDMs and VAEs are used as fixed components; their approximation errors bound the codec's distortion.
    Sec. 5, 'SD 2.1 Encoder-Decoder bound'; latent-space compression cannot exceed VAE fidelity.
invented entities (1)
  • Fixed noise codebooks C_i
    purpose: Discrete noise space for DDCM; each image is an index sequence over these codebooks.
    The paper introduces codebooks as a new representational device; no outside falsifiable evidence exists beyond the reported experiments, and decoding a bit-stream requires the exact same codebook realization.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Compressed Image Generation with Denoising Diffusion Codebook Models." pith.science (2026). https://pith.science/paper/EII7SGHC

@misc{pith2026250201189,
  author       = {Pith},
  title        = {Pith review of: Compressed Image Generation with Denoising Diffusion Codebook Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/EII7SGHC}},
  note         = {Machine review of arXiv:2502.01189}
}
read the original abstract

We present a novel generative approach based on Denoising Diffusion Models (DDMs), which produces high-quality image samples along with their losslessly compressed bit-stream representations. This is obtained by replacing the standard Gaussian noise sampling in the reverse diffusion with a selection of noise samples from pre-defined codebooks of fixed iid Gaussian vectors. Surprisingly, we find that our method, termed Denoising Diffusion Codebook Model (DDCM), retains sample quality and diversity of standard DDMs, even for extremely small codebooks. We leverage DDCM and pick the noises from the codebooks that best match a given image, converting our generative model into a highly effective lossy image codec achieving state-of-the-art perceptual image compression results. More generally, by setting other noise selections rules, we extend our compression method to any conditional image generation task (e.g., image restoration), where the generated images are produced jointly with their condensed bit-stream representations. Our work is accompanied by a mathematical interpretation of the proposed compressed conditional generation schemes, establishing a connection with score-based approximations of posterior samplers for the tasks considered.

Figures

Figures reproduced from arXiv: 2502.01189 by the authors.

Figure 1
Figure 1. Our proposed scheme (DDCM) produces visually appealing image samples with high compression ratios (bottom-right corners). ation process. In particular, by choosing the discrete noises to best match a given image, we achieve state-of-the-art per￾ceptual compression results. Moreover, using DDCM with different noise selection rules yields a versatile framework for other compressed conditional generation tasks, such as… view at source ↗
Figure 2
Figure 2. Method overview. DDCM replaces the standard Gaussian noises in DDPM sampling with a selection of noise samples from pre-defined codebooks of fixed iid Gaussian vectors. This retains the high-quality generative properties of standard DDMs, while producing the results along with their compressed representations. By choosing the discrete noises according to different selection rules, DDCM can perform a variety of condi… view at source ↗
Figure 3
Figure 3. Comparing DDPM with DDCM for different code￾book sizes K. Interestingly, DDCM with K = 64 achieves similar FID to DDPM, suggesting that the continuous representation space of DDPM (DDCM with K = ∞) is highly redundant. We use a class-conditional ImageNet model (256 × 256) for pixel space, and the text-conditional SD 2.1 model (768×768) for latent space, with prompts from MS-COCO. The K axis is in log-scale. involve … view at source ↗
Figures from the paper (24 more)
Figure 4
Figure 4. Figure 4: Qualitative image compression results. The presented images are taken from the Kodak24 (512 × 512) dataset. Our codec produces highly realistic outputs, while maintaining better fidelity to the original images compared to previous methods. Experiments. We evaluate our …
Figure 5
Figure 5. Figure 5: Compression quantitative evaluation. We compare the perceptual quality (FID) and distortion (PSNR, LPIPS) achieved at different BPPs. The image sizes of each dataset is denoted next to its name. Our method produces the best perceptual quality at most BPPs. Importantly,…
Figure 6
Figure 6. Figure 6: Comparison of zero-shot posterior sampling image restoration methods. Our approach achieves better perceptual quality compared to previous methods, while maintaining competitive PSNR and automatically producing compressed bit-stream representations for each restored im…
Figure 7
Figure 7. Figure 7: Comparing real-world face image restoration methods on the WIDER-Test dataset. We successfully optimize the NR-IQA measures and produce appealing output perceptual quality with less artifacts compared to previous methods. image representation as a natural text-conditio…
Figure 8
Figure 8. Figure 8: provides additional quantitative comparisons between DDPM and DDCM, using different K values. Specifically, we compute the Kernel Inception Distance (KID) (Binkowski et al. ´ , 2018), as well as the Frechet Distance and Kernel ´ Distance evaluated in the feature space …
Figure 9
Figure 9. Figure 9: Qualitative comparison of sample quality and diversity between DDCM and DDPM. We generate multiple samples for each prompt, using the 768 × 768 SD 2.1 model. 16 [PITH_FULL_IMAGE:figures/full_fig_p016_9.png]
Figure 10
Figure 10. Figure 10: Qualitative comparison of sample quality and diversity between DDCM and DDPM. We generate multiple samples for each class, using the conditional 256 × 256 ImageNet model. 17 [PITH_FULL_IMAGE:figures/full_fig_p017_10.png]
Figure 11
Figure 11. Figure 11: Qualitative extreme image compression results. The presented images are taken from the Kodak24 dataset, cropped to 512 × 512 pixels. Our compression scheme produces highly realistic decompressed outputs, while maintaining better fidelity to the original images compare…
Figure 12
Figure 12. Figure 12: Qualitative image compression results. The presented images are taken from the Kodak24 dataset, cropped to 512 × 512 pixels. Our compression scheme produces highly realistic decompressed outputs, while maintaining better fidelity to the original images compared to pre…
Figure 13
Figure 13. Figure 13: Qualitative image compression results. the presented images are taken from the ImageNet 256 × 256 dataset. Compared to previous methods, our compression scheme produces higher perceptual quality and better fidelity to the original images. 23 [PITH_FULL_IMAGE:figures/…
Figure 14
Figure 14. Figure 14: Qualitative image compression results. the presented images are taken from the ImageNet 256 × 256 dataset. Compared to previous methods, our compression scheme produces higher perceptual quality and better fidelity to the original images. 24 [PITH_FULL_IMAGE:figures/…
Figure 15
Figure 15. Figure 15: Quantitative image compression results on 768 × 768 sized images. At higher bit rates, our method achieves the lowest (best) FID scores in both datasets while maintaining better distortion metrics compared to PerCo (SD). At extremely low bit rates, while PerCo (SD) sh…
Figure 16
Figure 16. Figure 16: Evaluating the effectiveness of using text prompts in image compression. We evaluate our unconditional compression method with the text-conditional one, while using the text captions generated by BLIP-2. We find that using such text prompts hinders our compression res…
Figure 17
Figure 17. Figure 17: Qualitative comparison of zero-shot image super-resolution methods (posterior sampling). Our approach clearly produces better output perceptual quality compared to previous methods. C.3. Compressed Posterior Sampling for Image Restoration DPS and DDNM are implemented …
Figure 18
Figure 18. Figure 18: Qualitative comparison of zero-shot image colorization methods (posterior sampling). Our approach clearly produces better output perceptual quality compared to previous methods. 36 [PITH_FULL_IMAGE:figures/full_fig_p036_18.png]
Figure 19
Figure 19. Figure 19: Qualitative comparison of real-world face image restoration methods. Our method produces high perceptual quality results with less artifacts compared to previous methods, especially for challenging datasets such as WIDER-Test. 38 [PITH_FULL_IMAGE:figures/full_fig_p03…
Figure 20
Figure 20. Figure 20: Quantitative comparison of real-world face image restoration methods, evaluated on the CelebA-Test dataset. We successfully optimize each NR-IQA measure, surpassing the scores of previous methods. Here, only our NIQE-based solution generalizes well to FDDINOv2 in term…
Figure 21
Figure 21. Figure 21: Quantitative comparison of real-world face image restoration methods, evaluated on the LFW-Test dataset. We successfully optimize each NR-IQA measure, surpassing the scores of previous methods. All our solutions achieve impressive FDDINOv2 scores, while our NIQE-based…
Figure 22
Figure 22. Figure 22: Quantitative comparison of real-world face image restoration methods, evaluated on the WebPhoto-Test dataset. We successfully optimize each NR-IQA measure, surpassing the scores of previous methods. Our TOPIQ-based solution achieves the best FDDINOv2 scores compared t…
Figure 23
Figure 23. Figure 23: Qualitative comparison of CCG (left) with CG (right). CCG achieves superior image quality compared to CG while avoiding the use of classifier gradients. Additionally, CCG enables decompression without requiring access to the original class labels. 41 [PITH_FULL_IMAGE…
Figure 24
Figure 24. Figure 24: Qualitative comparison of CCFG with CFG. CCFG achieves comparable image quality and diversity to CFG, while enabling decompression without requiring the original inputs. C.6. Compressed Classifier-Free Guidance The task of text-conditional image generation can be solv…
Figure 25
Figure 25. Figure 25: Qualitative comparison of CCFG with CFG. CCFG achieves comparable image quality and diversity to CFG, while enabling decompression without requiring the original inputs. Specifically, since ∇xi log pi(y|xi) = si(xi |y) − si(xi), we simply use L(y, xi , Ci , k) = −⟨Ci(…
Figure 26
Figure 26. Figure 26: Quantitative evaluation of CCFG and CFG. CCFG achieves comparable FID scores to CFG while achieving slightly lower fidelity to the input prompts. However, unlike CFG, CCFG enables decompression without access to the original conditioning inputs. bit-streams produced b…
Figure 27
Figure 27. Figure 27: Qualitative comparison of image editing methods. Our approach preserves less image structure compared to DDPM inversion, while offering more semantic object preservation than DDIM inversion. This can be quite useful in scenarios where the editing prompt requires major…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

20 extracted references · 16 canonical work pages

  1. [6]

    2 Kang, B., Tripathi, S., and Nguyen, T

    doi: 10.1145/3581783.3611694. 2 Kang, B., Tripathi, S., and Nguyen, T. Q. Toward joint im- age generation and compression using generative adver- sarial networks. arXiv, 2019. URL https://arxiv. org/abs/1901.07838. 2 Karras, T., Aila, T., Laine, S., and Lehtinen, J. Progres- sive growing of GANs for improved quality, stability, and variation. In Internati...

  2. [8]

    2, 45 Meng, C., He, Y ., Song, Y ., Song, J., Wu, J., Zhu, J.- Y ., and Ermon, S

    URL https://proceedings.mlr.press/ v235/manor24a.html. 2, 45 Meng, C., He, Y ., Song, Y ., Song, J., Wu, J., Zhu, J.- Y ., and Ermon, S. SDEdit: Guided image synthesis and editing with stochastic differential equations. In International Conference on Learning Representations,

  3. [9]

    completely blind

    URL https://openreview.net/forum? id=aBsCjcPu_tE. 1, 2, 45 Mentzer, F., Toderici, G. D., Tschannen, M., and Agustsson, E. High-fidelity generative image compression. Advances in Neural Information Processing Systems , 33:11913– 11924, 2020. 2, 5 Mittal, A., Soundararajan, R., and Bovik, A. C. Making a “completely blind” image quality analyzer. IEEE Signal...

  4. [10]

    7 Ohayon, G., Michaeli, T., and Elad, M

    URL https://proceedings.mlr.press/ v202/ohayon23a.html. 7 Ohayon, G., Michaeli, T., and Elad, M. Posterior-mean recti- fied flow: Towards minimum MSE photo-realistic image restoration. In The Thirteenth International Conference on Learning Representations, 2025. URL https:// openreview.net/forum?id=hPOt3yUXii. 7, 8 Oquab, M., Darcet, T., Moutakanni, T., V...

  5. [11]

    43 Rajesh, B., Dusa, N., Javed, M., Dubey, S

    URL https://proceedings.mlr.press/ v139/radford21a.html. 43 Rajesh, B., Dusa, N., Javed, M., Dubey, S. R., and Nagab- hushan, P. T2ci-gan: Text to compressed image genera- tion using generative adversarial network. In Gupta, D., Bhurchandi, K., Murala, S., Raman, B., and Kumar, S. (eds.), Computer Vision and Image Processing, pp. 292– 307, Cham, 2023. Spr...

  6. [14]

    2 Theis, L., Shi, W., Cunningham, A., and Husz´ar, F

    URL https://proceedings.mlr.press/ v162/theis22a.html. 2 Theis, L., Shi, W., Cunningham, A., and Husz´ar, F. Lossy image compression with compressive autoencoders. In International Conference on Learning Representations,

  7. [16]

    RDPM: Solve Diffusion Probabilistic Models via Recurrent Token Prediction

    URL https://openreview.net/forum? id=SyxAb30cY7. 40 Tumanyan, N., Geyer, M., Bagon, S., and Dekel, T. Plug- and-play diffusion features for text-driven image-to- image translation. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pp. 1921–1930, 2023. 45 Vincent, P. A connection between score matching and de- noising ...

  8. [17]

    5 Yang, L

    URL https://openreview.net/forum? id=Cy5v64DqEF. 5 Yang, L. Discrete distribution networks. In The Thirteenth International Conference on Learning Representations,

Show all 20 references
  1. [19]

    on the same grounds

    (23) 32 Compressed Image Generation with Denoising Diffusion Codebook Models Thus, Ci(ki) − → K→∞ gi∇xi log pi(y|xi). (24) Plugging Eq. (24) into Eq. (20), we get xi−1 − → K→∞ xi − fi(xi) + g2 i si(xi) + g2 i ∇xi log pi(y|xi) (25) =xi − fi(xi) + g2 i ∇xi log pi(xi) + g2 i ∇xi ...

  2. [20]

    Figure 26 shows that our CCFG method is on par with CFG in terms of FID, while CFG produces higher CLIP scores

    with the OpenAI CLIP ViT-L/14 model (Radford et al., 2021). Figure 26 shows that our CCFG method is on par with CFG in terms of FID, while CFG produces higher CLIP scores. This suggests that the outputs of CFG better align with the input text prompts compared to CCFG. Yet, the...

  3. [1981]

    C., Hosseinzadeh, R., Sui, Y ., Ross, B

    3 Stein, G., Cresswell, J. C., Hosseinzadeh, R., Sui, Y ., Ross, B. L., Villecroze, V ., Liu, Z., Caterini, A. L., Taylor, E., and Loaiza-Ganem, G. Exposing flaws of generative model evaluation metrics and their unfair treatment of dif- fusion models. In Thirty-seventh Confere...

  4. [2014]

    cc/paper_files/paper/2014/file/ 5ca3e9b122f61f8f06494c97b1afccf3-Paper

    URL https://proceedings.neurips. cc/paper_files/paper/2014/file/ 5ca3e9b122f61f8f06494c97b1afccf3-Paper. pdf. 2 Gu, Y ., Wang, X., Xie, L., Dong, C., Li, G., Shan, Y ., and Cheng, M.-M. Vqfr: Blind face restoration with vector-quantized dictionary and parallel decoder. In Comp...

  5. [2017]

    2 Theis, L., Salimans, T., Hoffman, M

    URL https://openreview.net/forum? id=rJiNwv9gg. 2 Theis, L., Salimans, T., Hoffman, M. D., and Mentzer, F. Lossy compression with gaussian diffusion. arXiv preprint arXiv:2206.08889, 2022. 1, 2 13 Compressed Image Generation with Denoising Diffusion Codebook Models Toderici, G...

  6. [2019]

    cc/paper_files/paper/2019/file/ 3001ef257407d5a371a96dcd947c7d93-Paper

    URL https://proceedings.neurips. cc/paper_files/paper/2019/file/ 3001ef257407d5a371a96dcd947c7d93-Paper. pdf. 3 Song, Y ., Sohl-Dickstein, J., Kingma, D. P., Kumar, A., Er- mon, S., and Poole, B. Score-based generative modeling through stochastic differential equations. In Int...

  7. [2021]

    cc/paper_files/paper/2021/file/ 7d6044e95a16761171b130dcb476a43e-Paper

    URL https://proceedings.neurips. cc/paper_files/paper/2021/file/ 7d6044e95a16761171b130dcb476a43e-Paper. pdf. 7 Jiang, W. and Wang, R. MLIC++: Linear complex- ity multi-reference entropy modeling for learned image compression. In ICML 2023 Workshop Neural Com- pression: From I...

  8. [2022]

    ISBN 978-3-031-19796-3

    Springer-Verlag. ISBN 978-3-031-19796-3. doi: 10 Compressed Image Generation with Denoising Diffusion Codebook Models 10.1007/978-3-031-19797-0 8. URL https://doi. org/10.1007/978-3-031-19797-0_8 . 7 Hertz, A., Aberman, K., and Cohen-Or, D. Delta denoising score. In Proceeding...

  9. [2023]

    2 Jiang, W., Yang, J., Zhai, Y ., Ning, P., Gao, F., and Wang, R

    URL https://openreview.net/forum? id=hxIpcSoz2t. 2 Jiang, W., Yang, J., Zhai, Y ., Ning, P., Gao, F., and Wang, R. MLIC: Multi-reference entropy model for learned image compression. In Proceedings of the 31st ACM International Conference on Multimedia, pp. 7618–7627,

  10. [2024]

    2, 7 Liu, H., Zhang, G., Chen, J., and Khisti, A. J. Lossy com- pression with distribution shift as entropy constrained optimal transport. In International Conference on Learn- ing Representations, 2021. 2 Lugmayr, A., Danelljan, M., Romero, A., Yu, F., Timofte, R., and Van Go...

  11. [2025]

    2 Yang, R

    URL https://openreview.net/forum? id=xNsIfzlefG. 2 Yang, R. and Mandt, S. Lossy image compression with conditional diffusion models. In Oh, A., Naumann, T., Globerson, A., Saenko, K., Hardt, M., and Levine, S. (eds.), Advances in Neural Information Processing Sys- tems, volume...

  12. [6851]

    1, 3, 32, 33 Huang, G

    Curran Associates, Inc., 2020. 1, 3, 32, 33 Huang, G. B., Mattar, M., Berg, T., and Learned-Miller, E. Labeled Faces in the Wild: A Database forStudy- ing Face Recognition in Unconstrained Environments. In Workshop on Faces in ’Real-Life’ Images: Detec- tion, Alignment, and Re...

Pith tools

Reviewed August 9, 2026 · model on record in the stance chip above.