Pith. sign in

REVIEW 3 major objections 5 minor 40 references

Robust ID-Specific Face Restoration via Alignment Learning

T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read Alignment Learning, which aligns the predicted denoising noise from two same-identity reference images, lets a single reference image drive robust identity-specific face restoration that suppresses pose, expression, makeup, and hair style.

desk verdict Alignment Learning is a genuinely new objective, but Table 4 doesn't prove it separates ID-irrelevant semantics from the identity itself. read the letter →

arxiv 2507.10943 v2 pith:25JV4FDB submitted 2025-07-15 cs.CV

classification cs.CV
keywords facerestorationdiffusionmodelsidentitypreservationalignmentlearningreference-basedfidelityID-irrelevantsemanticslow-levelvision
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 solve a specific failure of diffusion-based face restoration: the restored face often does not look like the person in the low-quality input, and when a reference identity image is provided, the result copies irrelevant attributes such as pose, expression, makeup, and hairstyle from that reference. The proposed framework, RIDFR, injects the degraded image and the identity reference through two parallel conditioning modules attached to a pre-trained diffusion model, then applies Alignment Learning, which drives the predicted denoising noise from two same-identity reference images toward each other. The claim is that this noise-space alignment suppresses ID-irrelevant semantics while preserving identity, so a single low-quality reference image suffices for a restoration that is both identity-faithful and robust to reference variations. If true, this would make ID-specific face restoration practical for severely degraded and identity-obscure inputs, where current blind methods lose identity and current reference-based methods are unstable.

What carries the argument

The object that carries the argument is Alignment Learning, a finetuning objective that aligns the predicted denoising noises from two different same-identity reference images. Formally, $L_{\text{align}} = \mathbb{E}[\|\hat{\epsilon}_{ID1} - \hat{\epsilon}_{ID2}\|_2^2]$ (Eq. 4), and the total loss is $L_{\text{diffusion}} + \lambda L_{\text{align}}$ with $\lambda = 1.0$. The mechanism works because the diffusion model's noise prediction is the component that injects stochastic detail; forcing it to be invariant across same-identity references suppresses pose, expression, makeup, and hair style, while the identity feature $c_{ID}$ from the Identity Injection Module (ArcFace features queried through a Q-Former into CLIP space, injected via decoupled cross-attention) keeps the identity. The Content Injection Module concatenates the low-quality image in pixel space to the noisy latent, preserving content without color shift.

What would settle it

Find a test pair where the LQ face has a closed mouth and the same-identity reference has an open, laughing mouth; if the restored image produced by the trained framework shows an open mouth matching the reference rather than the closed mouth of the LQ input, then Alignment Learning has not actually removed expression as an ID-irrelevant semantic. A quantitative version is to compute the variance of mouth-openness scores across multiple same-identity references with contrasting expressions: the claim predicts near-zero variance in that attribute, while a failure would show the variance tracking the references.

Watch

Extended reading notes

Core claim

The central claim is that aligning the predicted denoising noises of the U-Net under two different reference images of the same identity, via the Alignment Learning objective $L_{\text{align}} = \mathbb{E}_{z_t,t,\epsilon}[\|\hat{\epsilon}_{ID1} - \hat{\epsilon}_{ID2}\|_2^2]$ (Eq. 4), removes the interference of ID-irrelevant face semantics in identity-specific face restoration. The authors argue that no identity encoder extracts exactly the same identity embedding from all same-identity images, so pose, expression, makeup, and hair style always leak into the restored face; Alignment Learning, applied as a finetuning stage after the Content Injection Module is trained, forces the diffusion model's noise prediction to be invariant to these variations while retaining enough identity and following the low-quality input's content. The full objective combines the standard diffusion loss with $\lambda L_{\text{align}}$ ($\lambda=1.0$), and at inference only a single identity image is needed. Experiments on CelebRef-HQ-Test and LFW-Ref-Test show the framework matching or beating reference-based baselines on identity similarity (IDS-HQ) while leading on perceptual quality metrics, and ablation reports Identity Variance dropping from 0.3610 (baseline) and 0.2387 (naive finetuning) to 0.1447 with Alignment Learning.

Load-bearing premise

Driving the predicted noises from two same-identity references to be identical assumes the only differences between those predictions are pose, expression, makeup, and hair style, and that erasing those differences never erases content that should follow the low-quality input, such as a closed mouth that the reference shows open.

Editorial extensions

If this is right

  • With only a single identity image at inference, the restored face keeps the identity of the reference while following the content of the LQ input, even when the reference differs in pose, expression, makeup, hair style, or illumination.
  • The framework is robust to low-resolution identity references: downsampling ID images to 64×64 or 128×128 produces nearly unchanged restoration quality and identity scores.
  • Alignment Learning lowers identity variance across same-identity references (I.V. 0.1447 vs 0.2387 for naive finetuning and 0.3610 for no alignment), directly quantifying the suppression of ID-irrelevant semantics.
  • On CelebRef-HQ-Test, RIDFR matches the identity similarity of the reference-based method PGDiff while leading on perceptual quality metrics, and outperforms blind restoration methods by over 50% in identity fidelity.

Reading between the lines

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

  • The same noise-alignment principle could be applied to identity customization for image generation, where the goal is also to suppress pose, expression, and style leakage from reference images; the paper's result suggests that aligning predicted noises in diffusion finetuning is a cheaper alternative to contrastive identity-embedding losses.
  • If noise-space alignment truly removes ID-irrelevant semantics, one would expect that also aligning the intermediate attention features or the final output images would yield even lower variation, but the paper only aligns predicted noises; a testable extension is to add feature-level alignment and measure whether identity variance drops further without hurting fidelity.
  • The method currently uses two references during training; sampling more than two same-identity references per step could give a better estimate of the per-identity noise centroid and might improve global alignment, at the cost of memory.
  • Because the loss is symmetric in the two references, it may also regularize the identity embedding itself: the identity encoder is effectively trained to produce embeddings whose induced noises are invariant, which could be measured by checking whether ArcFace embeddings of the restored images become closer to the true identity than the reference embeddings.
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 / 5 minor

Summary. The paper proposes RIDFR, a diffusion-based face restoration framework that combines content injection from the low-quality image with identity injection from a single reference image. The key novelty is Alignment Learning: during finetuning, the predicted denoising noises for two same-identity references are aligned with an L2 loss (Eq. 4), with the claim that this suppresses ID-irrelevant semantics such as pose, expression, makeup, and hairstyle. Experiments on CelebRef-HQ-Test and LFW-Ref-Test compare against blind and reference-based restoration methods, with additional ablations on pixel-level concatenation and Alignment Learning; the latter is evaluated using a new Identity Variance (I.V.) metric. The paper reports superior image quality and identity fidelity, and visual robustness to reference-image variations.

Significance. If the central claim holds, RIDFR would be a practically valuable single-reference ID-specific face restoration method: it promises identity fidelity from a severely degraded input, robustness to reference images of varying quality and expression, and no test-time optimization. Strengths include the use of an independently trained ArcFace model for identity evaluation, testing on both synthetic and real-world data, and explicit experiments on low-resolution reference images. The main weakness is that the most load-bearing evidence, Table 4, rests on a variance metric that is minimized by constant outputs, so the selective-suppression interpretation is not yet established. The paper is a reasonable empirical contribution for a computer vision venue, but the mechanism and its evaluation need strengthening.

major comments (3)
  1. [Section 3.3, Eqs. (4)-(6)] The alignment loss in Eq. (4) is an L2 distance between predicted noises conditioned on two same-identity references, with no anchor to either reference; the diffusion term in Eq. (5) can still be minimized from the LQ input alone because the Content Injection Module is already trained to do so via Eq. (2). Therefore the objective does not distinguish 'remove ID-irrelevant variation' from 'remove all reference-dependent variation', and the paper's own observation that large λ harms identity fidelity shows that this collapse is a real risk. To support the headline claim, Table 4 needs IDS-HQ and quality scores for baseline, naive finetuning, and Alignment Learning, and ideally a control with the identity branch ablated, so the I.V. drop can be attributed to selective suppression rather than to ignoring cID.
  2. [Table 4, Section 4.3] Identity Variance (I.V.) is defined only in Table 4 and not in the metrics section, and it is minimized by any constant output across references. The table reports I.V. alone; without IDS-HQ, LPIPS, or a content-consistency measure, the reader cannot tell whether the drop from 0.3610 to 0.1447 reflects suppression of pose/expression/makeup or weaker identity injection and reduced fidelity to LQ-controlled attributes. Please add identity-fidelity and image-quality metrics for all three rows, plus a measure of LQ-controlled attribute consistency, for example agreement with the LQ image on mouth and eye attributes.
  3. [Section 3.3, Section 4.3] The motivating example in Section 3.3 (LQ image with a closed mouth, ID image laughing) directly defines what 'suppressing ID-irrelevant semantics' should mean, but neither Table 4 nor Figure 7 measures whether LQ-controlled attributes are preserved across different references. I.V. captures only variance of identity embeddings. Please add an attribute-level or landmark-level consistency evaluation, or a targeted experiment with controlled LQ/ID attribute pairs; without it, the semantic-level claim is not directly tested.
minor comments (5)
  1. [Throughout] There are several typos and formatting issues: 'T able 1', 'T able 3', and 'T able 4' appear in the text, 'rougly' should be 'roughly', 'ID-irrelavant' should be 'ID-irrelevant', and Eq. (7) is typeset as '↓r +nδ]JP EGq' and should be cleaned.
  2. [Section 4.1] The I.V. metric should be defined in Section 4.1 alongside the other metrics rather than only in Table 4, including the exact identity-embedding extractor used and the number of references sampled per LQ image.
  3. [Abstract and Introduction] The claim of 'over 50% increment in identity fidelity' is not directly supported by Table 1: compared with the best non-reference method (GPEN, IDS-HQ 0.389), the reported RIDFR value 0.549 is a 41% relative increase, and compared with CodeFormer (0.376) it is about 46%. Please specify the baseline and whether the comparison is relative or absolute.
  4. [Section 4.2] The real-world LFW-Ref-Test contains only 16 identities and 76 images and is reported only qualitatively; a quantitative table for this subset would make the real-world robustness claim easier to assess.
  5. [Section 4.2] The paper does not mention whether code or trained models will be released; for an empirical method with a new training objective, code release would substantially aid reproducibility.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: RIDFR is an empirical training/evaluation paper whose central claims are supported by external benchmarks and metrics that are not identical to the training objective.

full rationale

RIDFR is an empirical training method, not a formal derivation, and its central claims are supported by external benchmarks and metrics that are not identical to the training objectives. The Alignment Learning loss (Eq. 4) minimizes the L2 distance between predicted noises conditioned on two same-identity references. The Identity Variance metric in Table 4 measures variance of output identity embeddings across references; these are different quantities, separated by the full denoising/generation process, so the reported I.V. drop is an empirical observation rather than a forced consequence of Eq. 4. Identity fidelity in Table 1 is measured with an ArcFace model using an alternative backbone and training set from the identity encoder used in the Identity Injection Module, and perceptual metrics (LPIPS, MANIQA, MUSIQ, CLIP-IQA, HyperIQA, PI) are standard external measures. The paper explicitly acknowledges the trivial 'ignore identity' solution by noting that a high lambda harms identity fidelity and then sets lambda to 1.0, showing awareness of the trade-off; this is an experimental design choice, not circular reasoning. Citations to IP-Adapter and PuLID are external prior work used for architecture initialization and motivation, not self-citations carrying the argument. No load-bearing step reduces, by construction or by self-citation chain, to its own inputs.

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

The core contribution rests on a small set of tuned hyperparameters (lambda, number of references, training iterations) and on two domain assumptions: that ArcFace-based identity embeddings can be separated from ID-irrelevant semantics, and that aligning predicted noises in diffusion space transfers to semantic-level robustness. The proposed I.V. metric is an unvalidated evaluation construct. No new physical entities are introduced.

free parameters (5)
  • Lambda (alignment loss weight) = 1.0
    Set by hand in Sec 3.3 after observing that high lambda harms identity fidelity; no sensitivity analysis is reported.
  • Number of same-identity references used in Alignment Learning = 2
    Randomly choose two ID images in Eq. 4; the paper states this balances local and global alignment and tuning cost, but the number is not ablated.
  • ID image downsampling range in training = 64x64 to 512x512
    Sec 4.1 states ID images are randomly down-sampled in this range to simulate uneven quality; it is a design choice for robustness.
  • Training iterations and batch size = 87,500 content; 45,000 alignment; batch 8
    Sec 4.1 specifies these values but does not justify them as optimal.
  • Degradation parameters in Eq. 7 = k_sigma, n_delta, JPEG q (values in supplementary)
    Standard Real-ESRGAN degradation model adopted from [30]; values are not reported in the main text and affect the training data distribution.
assumptions (6)
  • standard math Diffusion denoising training: the U-Net predicts noise epsilon_t and an L2 denoising loss is used (Eqs. 2 and 5).
    Assumed standard background from DDPM and Stable Diffusion; no formal derivation is given.
  • domain assumption Stable Diffusion v1.5 is an adequate generative prior for face restoration.
    Sec 3.1 and Sec 4.1 choose SD v1.5 as the pretrained prior; if the prior cannot generate detailed faces, the framework fails.
  • domain assumption ArcFace embeddings capture identity while ID-irrelevant semantics can be separated from them.
    Sec 3.2 and Sec 3.3 assume the identity encoder provides identity information and that alignment can strip away pose, expression, makeup, and hair style.
  • domain assumption At inference the user's ID image is recognizable and carries the desired identity; training always pairs ILQ, IHQ, and IID with the same identity.
    Sec 3.1 says IID only needs recognizable identity, but training pairs are same-identity, so the model is not trained for cross-identity swapping.
  • ad hoc to paper Aligning predicted noises (Eq. 4) from two same-identity references suppresses ID-irrelevant semantics in the final output images.
    This is the central assumption of Alignment Learning; no proof or error analysis shows that noise-space alignment transfers to output-image semantics.
  • ad hoc to paper The Identity Variance metric I.V. is a valid measure of ID-irrelevant interference.
    Sec 4.3 proposes I.V. without external validation or comparison to perceptual variance.
invented entities (1)
  • Identity Variance (I.V.) metric
    purpose: Quantitatively measure robustness of restoration across different ID references with the same identity.
    Introduced in Sec 4.3 and used only in the alignment-learning ablation; no external validation or comparison against existing robustness metrics.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Robust ID-Specific Face Restoration via Alignment Learning." pith.science (2026). https://pith.science/paper/25JV4FDB

@misc{pith2026250710943,
  author       = {Pith},
  title        = {Pith review of: Robust ID-Specific Face Restoration via Alignment Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/25JV4FDB}},
  note         = {Machine review of arXiv:2507.10943}
}
read the original abstract

The latest developments in Face Restoration have yielded significant advancements in visual quality through the utilization of diverse diffusion priors. Nevertheless, the uncertainty of face identity introduced by identity-obscure inputs and stochastic generative processes remains unresolved. To address this challenge, we present Robust ID-Specific Face Restoration (RIDFR), a novel ID-specific face restoration framework based on diffusion models. Specifically, RIDFR leverages a pre-trained diffusion model in conjunction with two parallel conditioning modules. The Content Injection Module inputs the severely degraded image, while the Identity Injection Module integrates the specific identity from a given image. Subsequently, RIDFR incorporates Alignment Learning, which aligns the restoration results from multiple references with the same identity in order to suppress the interference of ID-irrelevant face semantics (e.g. pose, expression, make-up, hair style). Experiments demonstrate that our framework outperforms the state-of-the-art methods, reconstructing high-quality ID-specific results with high identity fidelity and demonstrating strong robustness.

Figures

Figures reproduced from arXiv: 2507.10943 by the authors.

Figure 1
Figure 1. Left: For low quality input images, especially those severely degraded and iden￾tity obscure, existing blind face restoration methods (StableSR [27], DifFace [36], Diff￾BIR [20]) often lead to identity unexpected results, while reference-based restoration methods suffer from the robustness issue in inaccurate identity (PGDiff [32]), low im￾age quality or requiring extra conditions such as face landmarks(ASFFNet [16]… view at source ↗
Figure 2
Figure 2. Overall framework.The low-quality image ILQ and identity image IID are injected by the Content Injection Module and Identity Injection Module in parallel to guide the pre-trained diffusion model. Alignment Learning is introduced to align the restoration results (the predicted noises, to be precise) from multiple references with the same identity to suppress the ID-irrelevant interference. For inference, only a singl… view at source ↗
Figure 3
Figure 3. Qualitative Comparison on CelebRef-HQ-Test. Our method achieves superior identity fidelity and visual quality. 4.3. This module is trained in the same way as training ControlNet with Diffusion models [37] by minimizing: LContent = Ezt,t,ϵ[||ϵ − ϵθ(zt, t, ILQ)||2 2 ], (2) Identity Injection Module. aims to extract and inject the identity infor￾mation of IID, composing an ArcFace [5] encoder, a CLIP [22] encoder and a… view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Robustness to various reference images. Our proposed method can restore con￾sistent results when the provided ID images have different poses, expressions, make-up, hair style and illumination. To mitigate the ID-irrelevant semantics from ID images and enhance consis￾te…
Figure 5
Figure 5. Figure 5: Qualitative results on real world LFW-Ref-Test [PITH_FULL_IMAGE:figures/full_fig_p009_5.png]
Figure 6
Figure 6. Figure 6: Given ID images with different quality, RIDFR restores consistent high quality images, demonstrating its robustness. Comparison on Synthetic Dataset. Quantitative results are presented in [PITH_FULL_IMAGE:figures/full_fig_p010_6.png]
Figure 7
Figure 7. Figure 7: Ablation study on Alignment Learning, which has the most consistent result with LQ while maintaining identity fidelity. 4.3 Ablation Study Pixel-level Channel-wise Concatenation. We investigate the effectiveness of pixel-level channel-wise concatenation compared with l…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

40 extracted references · 21 canonical work pages

  1. [1]

    In: Proceedings of the European conference on computer vision (ECCV) workshops

    Blau, Y., Mechrez, R., Timofte, R., Michaeli, T., Zelnik-Manor, L.: The 2018 pirm challenge on perceptual image super-resolution. In: Proceedings of the European conference on computer vision (ECCV) workshops. pp. 0–0 (2018)

  2. [2]

    IEEE Transactions on Image Processing 30, 1219–1231 (2020)

    Chen, C., Gong, D., Wang, H., Li, Z., Wong, K.Y.K.: Learning spatial attention for face super-resolution. IEEE Transactions on Image Processing 30, 1219–1231 (2020)

  3. [3]

    In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition

    Chen, Y., Tai, Y., Liu, X., Shen, C., Yang, J.: Fsrnet: End-to-end learning face super-resolution with facial priors. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition. pp. 2492–2501 (2018)

  4. [4]

    arXiv preprint arXiv:2403.13535 (2024)

    Cui, S., Deng, J., Guo, J., An, X., Zhao, Y., Wei, X., Feng, Z.: Idadapter: Learn- ing mixed features for tuning-free personalization of text-to-image models. arXiv preprint arXiv:2403.13535 (2024)

  5. [5]

    In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition

    Deng, J., Guo, J., Xue, N., Zafeiriou, S.: Arcface: Additive angular margin loss for deep face recognition. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 4690–4699 (2019)

  6. [6]

    In: The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops (June 2019)

    Dogan, B., Gu, S., Timofte, R.: Exemplar guided face image super-resolution with- out facial landmarks. In: The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops (June 2019)

  7. [7]

    VQFR: Blind Face Restoration with Vector-Quantized Dictionary and Parallel Decoder

    Gu, Y., Wang, X., Xie, L., Dong, C., Li, G., Shan, Y., Cheng, M.M.: Vqfr: Blind face restoration with vector-quantized dictionary and parallel decoder. arXiv preprint arXiv:2205.06803 (2022)

  8. [8]

    arXiv preprint arXiv:2404.16022 (2024)

    Guo, Z., Wu, Y., Chen, Z., Chen, L., He, Q.: Pulid: Pure and lightning id cus- tomization via contrastive alignment. arXiv preprint arXiv:2404.16022 (2024)

Show all 40 references
  1. [9]

    Advances in neural information processing systems 25 (2012)

    Huang, G., Mattar, M., Lee, H., Learned-Miller, E.: Learning to align from scratch. Advances in neural information processing systems 25 (2012)

  2. [10]

    In: Workshop on faces in’Real-Life’Images: detection, alignment, and recognition (2008)

    Huang, G.B., Mattar, M., Berg, T., Learned-Miller, E.: Labeled faces in the wild: A database forstudying face recognition in unconstrained environments. In: Workshop on faces in’Real-Life’Images: detection, alignment, and recognition (2008)

  3. [11]

    In: CVPR (2019)

    Karras, T., Laine, S., Aila, T.: A style-based generator architecture for generative adversarial networks. In: CVPR (2019)

  4. [12]

    In: Proceedings of the IEEE/CVF international conference on computer vision

    Ke, J., Wang, Q., Wang, Y., Milanfar, P., Yang, F.: Musiq: Multi-scale image quality transformer. In: Proceedings of the IEEE/CVF international conference on computer vision. pp. 5148–5157 (2021)

  5. [13]

    arXiv preprint arXiv:1908.08239 (2019) 14 Fang et al

    Kim, D., Kim, M., Kwon, G., Kim, D.S.: Progressive face super-resolution via attention to facial landmark. arXiv preprint arXiv:1908.08239 (2019) 14 Fang et al

  6. [14]

    In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision

    Lau, Y.F., Zhang, T., Rao, Z., Chen, Q.: Ented: Enhanced neural texture extraction and distribution for reference-based blind face restoration. In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision. pp. 5162–5171 (2024)

  7. [15]

    In: International conference on machine learning

    Li, J., Li, D., Savarese, S., Hoi, S.: Blip-2: Bootstrapping language-image pre- training with frozen image encoders and large language models. In: International conference on machine learning. pp. 19730–19742. PMLR (2023)

  8. [16]

    In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition

    Li, X., Li, W., Ren, D., Zhang, H., Wang, M., Zuo, W.: Enhanced blind face restora- tion with multi-exemplar images and adaptive spatial feature fusion. In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 2706–2715 (2020)

  9. [17]

    In: The European Conference on Computer Vision (ECCV) (September 2018)

    Li, X., Liu, M., Ye, Y., Zuo, W., Lin, L., Yang, R.: Learning warped guidance for blind face restoration. In: The European Conference on Computer Vision (ECCV) (September 2018)

  10. [18]

    IEEE Transactions on Pattern Analysis and Machine Intelligence (2022)

    Li, X., Zhang, S., Zhou, S., Zhang, L., Zuo, W.: Learning dual memory dictionaries for blind face restoration. IEEE Transactions on Pattern Analysis and Machine Intelligence (2022)

  11. [19]

    arXiv preprint arXiv:2312.04461 (2023)

    Li, Z., Cao, M., Wang, X., Qi, Z., Cheng, M.M., Shan, Y.: Photomaker: Customizing realistic human photos via stacked id embedding. arXiv preprint arXiv:2312.04461 (2023)

  12. [20]

    arXiv preprint arXiv:2308.15070 (2023)

    Lin, X., He, J., Chen, Z., Lyu, Z., Fei, B., Dai, B., Ouyang, W., Qiao, Y., Dong, C.: Diffbir: Towards blind image restoration with generative diffusion prior. arXiv preprint arXiv:2308.15070 (2023)

  13. [21]

    arXiv preprint arXiv:2501.05177 (2025)

    Liu, S., Duan, Z.P., OuYang, J., Fu, J., Park, H., Liu, Z., Guo, C.L., Li, C.: Faceme: Robust blind face restoration with personal identification. arXiv preprint arXiv:2501.05177 (2025)

  14. [22]

    In: International conference on machine learning

    Radford, A., Kim, J.W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al.: Learning transferable visual models from natural language supervision. In: International conference on machine learning. pp. 8748–8763. PMLR (2021)

  15. [23]

    In: IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (June 2020)

    Su, S., Yan, Q., Zhu, Y., Zhang, C., Ge, X., Sun, J., Zhang, Y.: Blindly assess image quality in the wild guided by a self-adaptive hyper network. In: IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (June 2020)

  16. [24]

    arXiv preprint arXiv:2410.04161 (2024)

    Tao, K., Gu, J., Zhang, Y., Wang, X., Cheng, N.: Overcoming false illusions in real-world face restoration with multi-modal guided diffusion model. arXiv preprint arXiv:2410.04161 (2024)

  17. [25]

    In: Proceedings of the IEEE/CVF Confer- ence on Computer Vision and Pattern Recognition

    Varanka, T., Toivonen, T., Tripathy, S., Zhao, G., Acar, E.: Pfstorer: Personalized face restoration and super-resolution. In: Proceedings of the IEEE/CVF Confer- ence on Computer Vision and Pattern Recognition. pp. 2372–2381 (2024)

  18. [26]

    In: AAAI (2023)

    Wang, J., Chan, K.C., Loy, C.C.: Exploring clip for assessing the look and feel of images. In: AAAI (2023)

  19. [27]

    arXiv preprint arXiv:2305.07015 (2023)

    Wang, J., Yue, Z., Zhou, S., Chan, K.C., Loy, C.C.: Exploiting diffusion prior for real-world image super-resolution. arXiv preprint arXiv:2305.07015 (2023)

  20. [28]

    arXiv preprint arXiv:2401.07519 (2024)

    Wang, Q., Bai, X., Wang, H., Qin, Z., Chen, A.: Instantid: Zero-shot identity- preserving generation in seconds. arXiv preprint arXiv:2401.07519 (2024)

  21. [29]

    In: The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) (2021)

    Wang, X., Li, Y., Zhang, H., Shan, Y.: Towards real-world blind face restoration with generative facial prior. In: The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) (2021)

  22. [30]

    In: ICCV (2021) Robust ID-Specific Face Restoration via Alignment Learning 15

    Wang, X., Xie, L., Dong, C., Shan, Y.: Real-ESRGAN: Training real-world blind super-resolution with pure synthetic data. In: ICCV (2021) Robust ID-Specific Face Restoration via Alignment Learning 15

  23. [31]

    In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition

    Wang, Z., Zhang, Z., Zhang, X., Zheng, H., Zhou, M., Zhang, Y., Wang, Y.: Dr2: Diffusion-based robust degradation remover for blind face restoration. In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 1704–1713 (2023)

  24. [32]

    Advances in Neural Information Processing Systems 36 (2024)

    Yang, P., Zhou, S., Tao, Q., Loy, C.C.: Pgdiff: Guiding diffusion models for versatile face restoration via partial guidance. Advances in Neural Information Processing Systems 36 (2024)

  25. [33]

    In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recog- nition

    Yang, S., Wu, T., Shi, S., Lao, S., Gong, Y., Cao, M., Wang, J., Yang, Y.: Maniqa: Multi-dimension attention network for no-reference image quality assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recog- nition. pp. 1191–1200 (2022)

  26. [34]

    In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition

    Yang, T., Ren, P., Xie, X., Zhang, L.: Gan prior embedded network for blind face restoration in the wild. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 672–681 (2021)

  27. [35]

    arXiv preprint arXiv:2308.06721 (2023)

    Ye, H., Zhang, J., Liu, S., Han, X., Yang, W.: Ip-adapter: Text compati- ble image prompt adapter for text-to-image diffusion models. arXiv preprint arXiv:2308.06721 (2023)

  28. [36]

    arXiv preprint arXiv:2212.06512 (2022)

    Yue, Z., Loy, C.C.: Difface: Blind face restoration with diffused error contraction. arXiv preprint arXiv:2212.06512 (2022)

  29. [37]

    In: Proceedings of the IEEE/CVF International Conference on Computer Vision

    Zhang, L., Rao, A., Agrawala, M.: Adding conditional control to text-to-image diffusion models. In: Proceedings of the IEEE/CVF International Conference on Computer Vision. pp. 3836–3847 (2023)

  30. [38]

    In: Proceedings of the IEEE conference on computer vision and pattern recognition

    Zhang, R., Isola, P., Efros, A.A., Shechtman, E., Wang, O.: The unreasonable effectiveness of deep features as a perceptual metric. In: Proceedings of the IEEE conference on computer vision and pattern recognition. pp. 586–595 (2018)

  31. [39]

    Advances in Neural Information Processing Systems 36 (2024)

    Zhao, W., Bai, L., Rao, Y., Zhou, J., Lu, J.: Unipc: A unified predictor-corrector framework for fast sampling of diffusion models. Advances in Neural Information Processing Systems 36 (2024)

  32. [40]

    Advances in Neural Information Processing Systems 35, 30599–30611 (2022)

    Zhou, S., Chan, K., Li, C., Loy, C.C.: Towards robust blind face restoration with codebook lookup transformer. Advances in Neural Information Processing Systems 35, 30599–30611 (2022)

Pith tools

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