REVIEW 3 major objections 7 minor 41 references
SuMa: A Subspace Mapping Approach for Robust and Effective Concept Erasure in Text-to-Image Diffusion Models
T0 review · 3 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Erasing a narrow concept from a diffusion model works best by mapping its learned token subspace onto a nearby general subspace, which keeps adversarial token-recovery attacks below 20 percent while holding image quality close to original.
desk verdict SuMa's subspace-mapping idea is genuinely new and the results are good enough to deserve a serious referee, but the robustness claim needs a diagnostic and variance reporting. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is a two-stage subspace construction and elimination. In the first stage, Concept Ablation is applied repeatedly to the model; after each round, Textual Inversion finds a token for the target concept, and the first three tokens form the target subspace $U_i$ (with tokens from early TI training steps forming the reference subspace $V_i$). In the second stage, the to-k and to-v weight matrices of all cross-attention layers are fine-tuned with loss $L_{\text{sub}} = L_{\text{proj}} + \lambda_{\text{reg}} L_{\text{reg}}$, where $L_{\text{proj}}$ is the squared distance between each target basis vector and its projection onto $V_i$, and $L_{\text{reg}}$ keeps the reference subspace fixed. This is combined with a Concept Ablation loss so the noise prediction is also redirected. The 0.6 cosine-similarity threshold between a token and the target subspace is treated as sufficient for that token to be erased.
What would settle it
Run CCE on the SuMa-erased model for several concepts, collect the returned adversarial token, and compute its cosine similarity to the target subspace span; if an attack token with similarity below 0.6 still regenerates the concept with attack success above 0.2, the subspace hypothesis is refuted. Alternatively, rebuild the target subspace with a fourth TI token; if CCE attack success changes materially, the three-token span is not the full story.
Extended reading notes
Core claim
SuMa's central claim is that a narrow concept is fully represented by a three-dimensional span of Textual Inversion tokens in the cross-attention transformed embedding space of a concept-erased model, and that projecting this target subspace onto a reference subspace built from early Textual Inversion steps erases the concept while keeping generation quality near its original level. The paper reports attack success rates below 0.2 for both CCE and UnlearnDiff across subclass, identity, artistic style, and instance categories, with FID close to effective-erasure baselines, and a larger quality gap in the instance category.
Load-bearing premise
The paper rests on the empirical subspace hypothesis of Section 3.1: a narrow concept is fully captured by the three-dimensional span of a few Textual Inversion tokens, and any token with cosine similarity above 0.6 to that span is erased along with it; this threshold and dimension come from a toy Concept Ablation experiment rather than a derivation, and an incomplete span would leave a bypass token for attacks like CCE.
Editorial extensions
If this is right
- If SuMa's subspace hypothesis holds, any narrow concept for which Textual Inversion can find tokens fits the same two-stage recipe, not just the four categories tested.
- Because the final objective combines subspace projection with a base erasure loss, SuMa inherits and improves the base method: it fixes CA's vulnerability to CCE and even helps with concepts CA alone fails on, like Golf Ball and Mickey Mouse.
- SuMa is designed to work alongside image-space editing approaches: erasing narrow concepts first and then applying DUO to NSFW content yields attack success and FID close to applying DUO alone.
- The evaluation's 0.2 attack-success threshold gives a concrete operational definition of what 'erased' means against current adversarial token search.
- The appendices show the mapping variant preserves image quality much better than a pushing variant with similar attack resistance, favoring directional mapping over repulsion in future erasure methods.
Reading between the lines
- The 0.6 cosine threshold, if it holds across concepts, gives a testable clustering rule: any token within that similarity of the target span is erased, which could be used to audit erasure coverage before deployment.
- The three-token span is an empirical choice; varying the subspace dimension and measuring CCE success would reveal whether the span is truly complete or just sufficient for the tested concepts.
- Because the method inherits Textual Inversion's sensitivity, it likely degrades for concepts where early TI steps already converge to the target, as the paper itself notes for NSFW content; this makes reference-subspace selection the bottleneck.
- Treating a concept as a linear subspace of cross-attention embeddings is a useful abstraction beyond erasure, e.g., for concept localization or targeted editing, though the paper does not explore those directions.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces SuMa, a concept-erasure method for narrow concepts (subclasses, celebrities, artistic styles, instances) in text-to-image diffusion models. SuMa first constructs a target subspace from three Textual Inversion (TI) tokens recovered from the concept-erased model, and a reference subspace from an early-step TI token, then fine-tunes the cross-attention weights to project the target subspace onto the reference subspace while regularizing the reference. Experiments across four tasks, two attacks (CCE and UnlearnDiff), and several baselines report attack success rates (ASR) below 0.2 for SuMa with FID/CLIP scores close to non-robust baselines, leading the authors to claim the first method that is both robust and effective for narrow concepts.
Significance. If the claims hold, SuMa would be a meaningful advance: it targets narrow concepts such as copyrighted characters and celebrities, which existing robust methods (e.g., STEREO, DUO) handle poorly, and it proposes a novel subspace-mapping loss that balances completeness and image quality. The experimental scope is broad and includes diagnostic toy experiments that motivate the subspace hypothesis. However, the central robustness claim rests on an empirically motivated hypothesis whose transfer to the mapping loss is not directly validated, and the comparisons would be strengthened by variance estimates and release of code.
major comments (3)
- [Sec. 3.1 and 3.3, Eq. (4)] The hypothesis that a narrow concept is fully captured by a 3D subspace and that any token with cosine similarity above 0.6 to that subspace is erased is established only in a CA-based toy experiment, not under the proposed mapping objective L_proj. Equation (4) directly penalizes only the collected basis vectors, so the paper's robustness claim relies on an unverified transfer of this empirical observation. The nonzero CCE ASRs in Table 2 (0.05–0.17) are never diagnosed: the paper does not report the cosine similarity between the CCE-recovered tokens and the constructed target subspace, nor the residual norm after projection. This is load-bearing because the headline contribution is robustness against CCE for narrow concepts. I recommend adding diagnostics that measure these quantities for each concept and attack, together with ablations over the subspace size (e.g., 2, 3, 4 tokens) and the similarity threshold (e.g., 0.5, 0.6, 0.7).
- [Table 2 and Sec. 4.1] All experimental results are reported as single numbers without variance, multiple seeds, or significance tests. Given that the Instance-category FID for SuMa is 22.34 versus 16.93 for MACE, and several ASR values lie close to the 0.2 threshold (e.g., 0.17 for Instance CCE), the stability of the claimed trade-off is unclear. Moreover, STEREO and DUO are reimplemented rather than run from official code; a mismatch in hyperparameters could bias the comparison. The authors should report mean and standard deviation over at least three seeds, and ideally make the code and trained models available for verification.
- [Sec. 4.2, Table 2 (Instance row)] The Instance category exhibits a notable image-quality drop: FID 22.34 (vs. ~17 for MACE) and CLIP 0.29 (vs. 0.31 for MACE), while the ASR is 0.17/0.15, close to the 0.2 threshold. The paper attributes this to using 750 fine-tuning steps, but this is not investigated. The claim that SuMa achieves image quality 'comparable to approaches focused on effectiveness' is overstated for this category. The authors should ablate the number of fine-tuning steps and clarify whether the quality drop is inherent to the method or an artifact of the chosen training duration.
minor comments (7)
- [Abstract] There is a punctuation error: 'concept.,' should be 'concept'.
- [Sec. 3.3] 'respestively' should be 'respectively'.
- [Table 4 caption] 'Regulization' should be 'Regularization'.
- [Sec. 3.2] 'Euclid distance' should be 'Euclidean distance'.
- [Sec. 4.1, CCE evaluation] Please specify how the 'different set of images' for the CCE attack is chosen and its size, to ensure that the evaluation does not overlap with the subspace-construction images.
- [Eq. (5) and reference [3]] The paper cites [3] for the regularization term but presents L_reg as a new formula; please clarify what is taken from [3] and what is novel.
- [Appendix D, Table 7] The table shows that applying L_sub alone yields ASR above 50% for Identity and Artistic Style, indicating a heavy reliance on the CA loss. This sensitivity deserves a more detailed explanation in the main text, as it affects the interpretation of the method's robustness.
Circularity Check
No significant circularity: SuMa's construction, objective, and evaluation are not equivalent by construction; the shared TI mechanism is a test-design feature, not a tautology.
full rationale
The paper's derivation chain is self-contained. SuMa builds a target subspace from Textual Inversion tokens collected on intermediate CA-erased models and a reference subspace from early-step TI tokens (Eq. 2), and defines an explicit algebraic objective L_sub = L_proj + λ_reg L_reg (Eqs. 4–6) that projects the target basis onto the reference basis. Robustness is then measured by running CCE and UnlearnDiff on the final fine-tuned model and reporting ASR (Table 2). Although CCE and the subspace-construction stage both search with Textual Inversion, the evaluation is not circular: CCE optimizes a new token on the final weights, which are different from the intermediate models on which the subspace tokens were collected, so the reported ASR is not forced by the construction. The Sec. 3.1 cosine-similarity threshold (0.6) is an empirical observation from a CA toy experiment used to motivate collecting three tokens; it is not a fitted parameter that mathematically guarantees the later ASR numbers. The method is compared against external baselines with public attack code, and no load-bearing self-citation appears (references [3] and [18] are independent of the present authors). Concerns about whether the 0.6 threshold transfers to the mapping objective are validity and robustness questions, not instances of circularity under the definition used here.
Assumptions & free parameters
free parameters (4)
- lambda_reg =
1 (default)
- cosine similarity threshold =
0.6
- subspace size (number of TI tokens) =
3 (l=3)
- reference token TI step =
50
assumptions (5)
- domain assumption A narrow concept is representable as a low-dimensional subspace in the cross-attention transformed token-embedding space.
- domain assumption Early TI tokens (e.g., step 50) form a reference subspace that is close enough to erase the concept but general enough to preserve image quality.
- ad hoc to paper A token whose cosine similarity to the target subspace exceeds 0.6 will be erased along with the subspace.
- domain assumption Modifying only the cross-attention to-k and to-v weights is sufficient to erase a token when combined with the CA loss.
- domain assumption CCE and UnlearnDiff are adequate models of adversarial attempts to recover an erased concept.
Cite this review
Pith. "Pith review of SuMa: A Subspace Mapping Approach for Robust and Effective Concept Erasure in Text-to-Image Diffusion Models." pith.science (2026). https://pith.science/paper/GA2YMLMJ
@misc{pith2026250905625,
author = {Pith},
title = {Pith review of: SuMa: A Subspace Mapping Approach for Robust and Effective Concept Erasure in Text-to-Image Diffusion Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/GA2YMLMJ}},
note = {Machine review of arXiv:2509.05625}
}
read the original abstract
The rapid growth of text-to-image diffusion models has raised concerns about their potential misuse in generating harmful or unauthorized contents. To address these issues, several Concept Erasure methods have been proposed. However, most of them fail to achieve both robustness, i.e., the ability to robustly remove the target concept., and effectiveness, i.e., maintaining image quality. While few recent techniques successfully achieve these goals for NSFW concepts, none could handle narrow concepts such as copyrighted characters or celebrities. Erasing these narrow concepts is critical in addressing copyright and legal concerns. However, erasing them is challenging due to their close distances to non-target neighboring concepts, requiring finer-grained manipulation. In this paper, we introduce Subspace Mapping (SuMa), a novel method specifically designed to achieve both robustness and effectiveness in easing these narrow concepts. SuMa first derives a target subspace representing the concept to be erased and then neutralizes it by mapping it to a reference subspace that minimizes the distance between the two. This mapping ensures the target concept is robustly erased while preserving image quality. We conduct extensive experiments with SuMa across four tasks: subclass erasure, celebrity erasure, artistic style erasure, and instance erasure and compare the results with current state-of-the-art methods. Our method achieves image quality comparable to approaches focused on effectiveness, while also yielding results that are on par with methods targeting completeness.
Figures
Figures from the paper (11 more)
Reference graph
Works this paper leans on
-
[1]
Dosovitskiy Alexey. An image is worth 16x16 words: Trans- formers for image recognition at scale.arXiv preprint arXiv: 2010.11929, 2020. 6
arXiv 2010
-
[2]
Removing undesirable concepts in text-to-image generative models with learnable prompts
Anh Bui, Khanh Doan, Trung Le, Paul Montague, Tamas Abraham, and Dinh Phung. Removing undesirable concepts in text-to-image generative models with learnable prompts. arXiv preprint arXiv:2403.12326, 2024. 1
arXiv 2024
-
[3]
Anh Bui, Long Vuong, Khanh Doan, Trung Le, Paul Mon- tague, Tamas Abraham, and Dinh Phung. Erasing undesir- able concepts in diffusion models with adversarial preserva- tion.arXiv preprint arXiv:2410.15618, 2024. 5, 8
arXiv 2024
-
[4]
Muse: Text- to-image generation via masked generative transformers
Huiwen Chang, Han Zhang, Jarred Barber, AJ Maschinot, Jos´e Lezama, Lu Jiang, Ming-Hsuan Yang, Kevin Murphy, William T Freeman, Michael Rubinstein, et al. Muse: Text- to-image generation via masked generative transformers. In Proceedings of the 40th International Conference on Ma- chine Learning, pages 4055–4075, 2023. 1
work page 2023
-
[5]
Zhi-Yi Chin, Chieh-Ming Jiang, Ching-Chun Huang, Pin- Yu Chen, and Wei-Chen Chiu. Prompting4debugging: Red- teaming text-to-image diffusion models by finding problem- atic prompts.arXiv preprint arXiv:2309.06135, 2023. 3
arXiv 2023
-
[6]
Rinon Gal, Yuval Alaluf, Yuval Atzmon, Or Patash- nik, Amit H Bermano, Gal Chechik, and Daniel Cohen- Or. An image is worth one word: Personalizing text-to- image generation using textual inversion.arXiv preprint arXiv:2208.01618, 2022. 1, 3
arXiv 2022
-
[7]
Erasing concepts from diffusion models
Rohit Gandikota, Joanna Materzynska, Jaden Fiotto- Kaufman, and David Bau. Erasing concepts from diffusion models. InProceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 2426–2436, 2023. 1, 2, 4, 6, 8
work page 2023
-
[8]
Unified concept editing in diffusion models
Rohit Gandikota, Hadas Orgad, Yonatan Belinkov, Joanna Materzy´nska, and David Bau. Unified concept editing in diffusion models. InProceedings of the IEEE/CVF Win- ter Conference on Applications of Computer Vision, pages 5111–5120, 2024. 8
work page 2024
Show all 41 references
-
[9]
Giphy celebrity detector, 2022
Nick Hasty, Ihor Kroosh, Dmitry V oitekh, and Dmytro Kor- duban. Giphy celebrity detector, 2022. 6
2022
-
[10]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. InProceed- ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 6
2016
-
[11]
Classifier-free diffusion guidance.arXiv preprint arXiv:2207.12598, 2022
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance.arXiv preprint arXiv:2207.12598, 2022. 2
2022 arXiv
-
[12]
Fastai: a layered api for deep learning.Information, 11(2):108, 2020
Jeremy Howard and Sylvain Gugger. Fastai: a layered api for deep learning.Information, 11(2):108, 2020. 6
2020
-
[13]
Lora: Low-rank adaptation of large language models.arXiv preprint arXiv:2106.09685, 2021
Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models.arXiv preprint arXiv:2106.09685, 2021. 2
2021 arXiv
-
[14]
Ai art and its impact on artists
Harry H Jiang, Lauren Brown, Jessica Cheng, Mehtab Khan, Abhishek Gupta, Deja Workman, Alex Hanna, Johnathan Flowers, and Timnit Gebru. Ai art and its impact on artists. InProceedings of the 2023 AAAI/ACM Conference on AI, Ethics, and Society, pages 363–374, 2023. 1
2023
-
[15]
Race: Ro- bust adversarial concept erasure for secure text-to-image dif- fusion model.arXiv preprint arXiv:2405.16341, 2024
Changhoon Kim, Kyle Min, and Yezhou Yang. Race: Ro- bust adversarial concept erasure for secure text-to-image dif- fusion model.arXiv preprint arXiv:2405.16341, 2024. 1, 3, 6, 7, 4, 5
2024 arXiv
-
[16]
Ablating con- cepts in text-to-image diffusion models
Nupur Kumari, Bingliang Zhang, Sheng-Yu Wang, Eli Shechtman, Richard Zhang, and Jun-Yan Zhu. Ablating con- cepts in text-to-image diffusion models. InProceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 22691–22702, 2023. 1, 2, 3, 4, 6, 7, 5
2023
-
[17]
Visual instruction tuning.Advances in neural information processing systems, 36, 2024
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning.Advances in neural information processing systems, 36, 2024. 6
2024
-
[18]
Mace: Mass concept erasure in diffu- sion models
Shilin Lu, Zilan Wang, Leyang Li, Yanzhu Liu, and Adams Wai-Kin Kong. Mace: Mass concept erasure in diffu- sion models. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6430– 6440, 2024. 1, 2, 4, 5, 6, 7
2024
-
[19]
One-dimensional adapter to rule them all: Concepts diffusion models and erasing applications
Mengyao Lyu, Yuhong Yang, Haiwen Hong, Hui Chen, Xuan Jin, Yuan He, Hui Xue, Jungong Han, and Guiguang Ding. One-dimensional adapter to rule them all: Concepts diffusion models and erasing applications. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Re...
2024
-
[20]
Glide: Towards photorealis- tic image generation and editing with text-guided diffusion models
Alexander Quinn Nichol, Prafulla Dhariwal, Aditya Ramesh, Pranav Shyam, Pamela Mishkin, Bob Mcgrew, Ilya Sutskever, and Mark Chen. Glide: Towards photorealis- tic image generation and editing with text-guided diffusion models. InInternational Conference on Machine Learning, pa...
2022
-
[21]
Direct unlearning optimization for robust and safe text- to-image models
Yong-Hyun Park, Sangdoo Yun, Jin-Hwa Kim, Junho Kim, Geonhui Jang, Yonghyun Jeong, Junghyo Jo, and Gayoung Lee. Direct unlearning optimization for robust and safe text- to-image models. InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. 2, 3,...
2024
-
[22]
Circumventing concept erasure meth- ods for text-to-image generative models
Minh Pham, Kelly O Marshall, Niv Cohen, Govind Mittal, and Chinmay Hegde. Circumventing concept erasure meth- ods for text-to-image generative models. InThe Twelfth In- ternational Conference on Learning Representations, 2023. 1, 2, 3, 6
2023
-
[23]
Hierarchical text-conditional image gener- ation with clip latents.arXiv preprint arXiv:2204.06125, 1 (2):3, 2022
Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image gener- ation with clip latents.arXiv preprint arXiv:2204.06125, 1 (2):3, 2022. 1
2022 arXiv
-
[24]
Stable diffusion v1-4 model card., 2022
Robin Rombach. Stable diffusion v1-4 model card., 2022. 1, 7, 4, 5
2022
-
[25]
Stable diffusion 2.0 release., 2022
Robin Rombach. Stable diffusion 2.0 release., 2022. 1
2022
-
[26]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022. 1
2022
-
[27]
Imagenet large scale visual recognition challenge.International journal of computer vision, 115:211–252, 2015
Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, San- jeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge.International journal of computer vision, 115:211–252, 2015. 6 9
2015
-
[28]
Photorealistic text-to-image diffusion models with deep language understanding.Advances in neural information processing systems, 35:36479–36494, 2022
Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily L Denton, Kamyar Ghasemipour, Raphael Gontijo Lopes, Burcu Karagol Ayan, Tim Salimans, et al. Photorealistic text-to-image diffusion models with deep language understanding.Advances in neural information ...
2022
-
[29]
Large-scale classifica- tion of fine-art paintings: Learning the right metric on the right feature
Babak Saleh and Ahmed Elgammal. Large-scale classifica- tion of fine-art paintings: Learning the right metric on the right feature. arxiv 2015.arXiv preprint arXiv:1505.00855,
2015 arXiv
-
[30]
Laion-5b: An open large-scale dataset for training next generation image-text models.Advances in Neural In- formation Processing Systems, 35:25278–25294, 2022
Christoph Schuhmann, Romain Beaumont, Richard Vencu, Cade Gordon, Ross Wightman, Mehdi Cherti, Theo Coombes, Aarush Katta, Clayton Mullis, Mitchell Worts- man, et al. Laion-5b: An open large-scale dataset for training next generation image-text models.Advances in Neural In- fo...
2022
-
[31]
Glaze: Protecting artists from style mimicry by{Text-to-Image}models
Shawn Shan, Jenna Cryan, Emily Wenger, Haitao Zheng, Rana Hanocka, and Ben Y Zhao. Glaze: Protecting artists from style mimicry by{Text-to-Image}models. In32nd USENIX Security Symposium (USENIX Security 23), pages 2187–2204, 2023. 1
2023
-
[32]
Diffusion art or digital forgery? investigating data replication in diffusion models
Gowthami Somepalli, Vasu Singla, Micah Goldblum, Jonas Geiping, and Tom Goldstein. Diffusion art or digital forgery? investigating data replication in diffusion models. InPro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6048–6058, 2023. 1
2023
-
[33]
Stereo: A two- stage framework for adversarially robust concept erasing from text-to-image diffusion models
Koushik Srivatsan, Fahad Shamshad, Muzammal Naseer, Vishal M Patel, and Karthik Nandakumar. Stereo: A two- stage framework for adversarially robust concept erasing from text-to-image diffusion models. InProceedings of the Computer Vision and Pattern Recognition Conference, pag...
2025
-
[34]
Celebrity-1000 datasets, 2022
Tonyassi. Celebrity-1000 datasets, 2022. 6
2022
-
[35]
Ring-a-bell! how reliable are concept removal meth- ods for diffusion models?arXiv preprint arXiv:2310.10012,
Yu-Lin Tsai, Chia-Yi Hsu, Chulin Xie, Chih-Hsun Lin, Jia- You Chen, Bo Li, Pin-Yu Chen, Chia-Mu Yu, and Chun-Ying Huang. Ring-a-bell! how reliable are concept removal meth- ods for diffusion models?arXiv preprint arXiv:2310.10012,
-
[36]
Diffusion model align- ment using direct preference optimization
Bram Wallace, Meihua Dang, Rafael Rafailov, Linqi Zhou, Aaron Lou, Senthil Purushwalkam, Stefano Ermon, Caiming Xiong, Shafiq Joty, and Nikhil Naik. Diffusion model align- ment using direct preference optimization. InProceedings of the IEEE/CVF Conference on Computer Vision an...
2024
-
[37]
Scaling autoregressive models for content-rich text-to-image generation.Transac- tions on Machine Learning Research, 2021
Jiahui Yu, Yuanzhong Xu, Jing Yu Koh, Thang Luong, Gun- jan Baid, Zirui Wang, Vijay Vasudevan, Alexander Ku, Yin- fei Yang, Burcu Karagol Ayan, et al. Scaling autoregressive models for content-rich text-to-image generation.Transac- tions on Machine Learning Research, 2021. 1
2021
-
[38]
Defensive unlearning with adversarial training for robust concept erasure in diffusion models.arXiv preprint arXiv:2405.15234, 2024
Yimeng Zhang, Xin Chen, Jinghan Jia, Yihua Zhang, Chongyu Fan, Jiancheng Liu, Mingyi Hong, Ke Ding, and Sijia Liu. Defensive unlearning with adversarial training for robust concept erasure in diffusion models.arXiv preprint arXiv:2405.15234, 2024. 2, 3, 6, 7, 4, 5
2024 arXiv
-
[39]
naked” concept to a “dressed in
Yimeng Zhang, Jinghan Jia, Xin Chen, Aochuan Chen, Yi- hua Zhang, Jiancheng Liu, Ke Ding, and Sijia Liu. To gener- ate or not? safety-driven unlearned diffusion models are still easy to generate unsafe images... for now. InEuropean Con- ference on Computer Vision, pages 385–40...
2025
-
[40]
Overall, we can see that compared to Subspace Mapping, Subspace Pushing performs slightly better in terms of pro- tecting the model against adversarial attacks, but at the cost of significantly reducing image quality. D. Modify Cross-Attn Only We provide an ablation study by a...
-
[41]
So, in conclusion, our work could be combined with DUO to eliminate all kinds of concepts and advance the development of a safe text-to-image model
Second, we found that after erasing one narrow concept based on our method, we can still apply DUO afterward, with results very close to applying DUO directly, as shown in Table 8. So, in conclusion, our work could be combined with DUO to eliminate all kinds of concepts and ad...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.