Pith. sign in

REVIEW 3 major objections 4 minor 22 references

Minimalist Concept Erasure in Generative Models

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

Pith's one-line read Erasing a concept from a flow-matching image generator can be driven by minimizing one loss on the final image: pull target-concept outputs toward the null-prompt output, preserve everything else, with a learned binary neuron mask…

desk verdict Genuine empirical contribution to concept erasure for flow-based DiTs, with strong robustness numbers on FLUX, but the theoretical grounding rests on an unvalidated approximation that the paper never checks. read the letter →

arxiv 2507.13386 v1 pith:NJEAETY2 submitted 2025-07-16 cs.CV cs.LG

classification cs.CVcs.LG
keywords concepterasuremachineunlearningflowmatchingrectifiedneuronmaskingadversarialrobustnessAIsafetytext-to-imagegeneration
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 a concept can be erased from a modern text-to-image generator by supervising only the final generated image, using the frozen original model itself as the reference: pull the target concept's outputs toward what the model produces for the empty prompt, pin neutral-prompt outputs to the original behavior, and carry out the change with a learned binary neuron mask rather than a fine-tuning of weights. That matters because existing erasure methods either realign every denoising step, which degrades general image quality, or operate on cross-attention modules, which do not transfer to the newest flow-based transformer architectures such as FLUX. Starting from a minimalist objective over final-output distributions only, the paper derives an upper-bound MSE loss, shows the objective is equivalent to RLHF-style alignment with a moving reward, and reports on a 12-billion-parameter rectified-flow model that it erases NSFW content, copyrighted characters, and art styles while keeping detection rates low even under adversarial attacks. The payoff, if the claim holds, is a model-agnostic and data-efficient recipe for removing unwanted concepts from deployed generators without retraining or quality loss.

What carries the argument

The load-bearing object is the composite sampling map $F_\theta(x_T,c)$: the entire Euler-integration trajectory from initial noise $x_T$ to the final image $x_0$, treated as a deterministic map whose endpoint distribution is approximated as Gaussian with isotropic covariance. The derived loss compares this endpoint against two frozen reference trajectories of the original model, $F_{\theta'}(x_T,\emptyset)$ for the erased concept (which drives the posterior $\log p_\theta(c|x_0)$ down) and $F_{\theta'}(x_T,c)$ for neutral concepts (which preserves the output distribution). The binary neuron mask $M \in \{0,1\}^{|\theta|}$ with $\theta = M \odot \theta'$, learned by hard-discrete continuous relaxation and then binarized, implements the erasure as a severing of connections rather than a weight shift, which is what the paper credits for robustness. Step-wise gradient checkpointing supplies the memory-feasible end-to-end backpropagation through all generation steps.

What would settle it

Run the reported training on FLUX, record the fraction of neurons zeroed by the final binarized mask, and estimate $D_{\mathrm{KL}}(p_\theta(x_0)\,\|\,p_{\theta'}(x_0|c=\emptyset))$ between the erased model's marginal output distribution and the original model's null-prompt conditional on held-out prompts. If the mask ablates a large share of the network, or if the two distributions diverge substantially while the loss is minimized, the theoretical link between the MSE loss and the posterior $\log p_\theta(c|x_0)$ breaks, and the observed erasure would need a different explanation.

Watch

Extended reading notes

Core claim

This paper's central claim is that minimalist concept erasure reduces to minimizing the intractable objective $\min_\theta \mathbb{E}_{c\sim C_R}[\mathbb{E}_{x_0\sim p_\theta(x_0|c)}[\log p_\theta(c|x_0)]] + \beta\, \mathbb{E}_{c\sim C_N}[D_{\mathrm{KL}}(p_{\theta'}(x_0|c)\,\|\,p_\theta(x_0|c))]$, and that this objective is upper-bounded by the tractable, differentiable loss $L = \mathbb{E}\|F_\theta(x_T,c) - F_{\theta'}(x_T,\emptyset)\|^2 + \beta\, \mathbb{E}\|F_\theta(x_T,c) - F_{\theta'}(x_T,c)\|^2$, where $F_\theta$ is the full Euler-integrated sampling map from initial noise $x_T$ to the final image $x_0$. Minimizing this loss with $\theta = M \odot \theta'$ for a binarized neuron mask $M$ shrinks the posterior $p_\theta(c|x_0)$ of the target concept while holding neutral outputs close to the original model's; because the mask ablates connectivity rather than perturbing weights, the paper argues, the erasure resists adversarial prompts. On FLUX.1-Schnell the method lowers detection rates to between 1% and 43% across inappropriate objects, IP characters, and art styles while matching or beating the baselines on CLIP, FID, and SSIM, and it cuts attack success rates under Ring-A-Bell, MMA-Diffusion, P4D, and I2P to 0.4–19%.

Load-bearing premise

The derivation of the erasure loss assumes the erased model's overall output distribution is nearly the same as the original model's null-prompt output distribution, on the grounds that only a small, sparse set of neurons gets ablated; the paper never reports how sparse the final binary mask actually is, so there is no direct evidence that this 'mostly unchanged' premise holds.

Editorial extensions

If this is right

  • A concept can be erased from the newest flow-matching DiT models such as FLUX and SD3.5, where cross-attention-based erasure methods no longer apply, because the loss is defined on final outputs only.
  • Erasure achieved by ablating connectivity survives adversarial prompting: under Ring-A-Bell, MMA-Diffusion, P4D, and I2P, attack success rates fall to 0.4–19%, far below the weight-fine-tuning baselines.
  • The same minimalist formulation transfers to diffusion models by substituting the composite denoising trajectory for $F_\theta$, so the principle is not restricted to ODE-based sampling.
  • The erasure objective is equivalent to RLHF-style alignment with the moving reward $r(c,x_0;\theta) = -\log p_\theta(c|x_0)$, connecting concept erasure directly to alignment research.
  • Roughly 20 filtered prompt pairs are enough to erase a concept, so deployment-time erasure of newly discovered unwanted concepts is feasible without retraining.

Reading between the lines

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

  • From my reading, the mechanism suggests a transferable design principle the authors do not state: adversarial robustness comes from deleting the computational pathway that realizes a concept, which leaves prompt-optimization attacks with no small weight perturbation to exploit; this principle should generalize to other modalities and to safety classifiers, but the paper tests it only on image mode
  • The paper never checks whether the erased concept's internal representation disappears or merely stops influencing the output; probing the masked model's hidden activations for the target concept would settle whether the ablation genuinely removes the concept.
  • An untested extension is erasing many concepts in a single run; the authors erase one concept at a time, and how overlapping masks interact with the null-prompt approximation in the derivation is unknown.
  • Reporting the final mask sparsity would be the most informative single addition, because it directly verifies the 'weights remain mostly unchanged' step on which the loss derivation rests.
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 proposes a concept-erasure method for flow-matching generative models, with a claimed 'minimalist' objective that supervises only the final generation output. The authors derive a tractable upper-bound loss (Eq. 16) from a KL-based objective (Eq. 5), introduce a learnable binary neuron mask to ablate concept-related connectivity, and evaluate the method on FLUX for NSFW, IP-character, object, and art-style erasure, reporting improved detection-rate reduction and competitive preservation metrics relative to several baselines. The paper also sketches extensions to diffusion models, connections to per-step losses, and an analogy to RLHF alignment.

Significance. If the derivation and empirical claims hold, the paper makes a useful contribution: it formulates concept erasure directly on final outputs rather than intermediate steps, provides a theoretical upper bound that links erasure to alignment, and demonstrates that neuron masking can give robustness against adversarial prompts on a 12B-parameter model. The end-to-end optimization with step-wise gradient checkpointing, the prompt-filtering scheme, and the breadth of adversarial evaluations are all valuable. The central theoretical claim, however, rests on two unvalidated approximations, and the empirical evidence for minimality is indirect; these points need to be addressed before the theoretical grounding can be accepted.

major comments (3)
  1. [Appendix B, Eq. (43)] The derivation of the erasure loss replaces the marginal pθ(x0) with the null-prompt conditional pθ′(x0|c=∅) on the grounds that 'the model weight remains mostly unchanged.' This step is load-bearing: without it, the term minimized in Eq. (16) is DKL[pθ(x0|c)||pθ′(x0|∅)], not an upper bound on E_{x0∼pθ(x0|c)}[log pθ(c|x0)], and the stated link to Eq. (5) is broken. The manuscript never reports the fraction of mask entries that are zeroed, per-layer sparsity, or the relative change of the masked weights; since the mask is learned with hard-discrete sampling and no sparsity budget, a large ablation is entirely possible. I ask the authors to report the final mask sparsity and to provide direct evidence that the approximation holds, for example by measuring a distributional distance between pre- and post-masking outputs on neutral/unconditional prompts or by evaluating the quality of Eq. (43) on a held-out concept set. Without such evidence, the central theoretical grounding of the method is unsupported.
  2. [§3.2, Eq. (8) and Appendix A, Eq. (31)] The Gaussian approximation pθ(x0|xT,c)=N(Fθ(xT,c),Σ) is assumed but never validated. For a deterministic ODE sampler, this conditional distribution is degenerate, so the Gaussian is only a modeling device; conversely, if the true distribution is not Gaussian, the inequalities in Eqs. (11) and (49) need not hold, and the MSE is not an upper bound on the KL. The paper should either justify the Gaussian model (e.g., as an account of discretization or solver noise) and provide empirical evidence for it, or weaken the theoretical claim accordingly. This assumption is load-bearing for both the preservation and erasure loss derivations.
  3. [Appendix A, Eqs. (24)-(27)] The chain-rule decomposition used to obtain Eq. (7) appears to mix conditional and unconditional distributions. The authors introduce p(xT) as though it were identical for both models, but the inequality is stated for conditional KL divergences; the proper decomposition requires a conditional source distribution p(xT|c), or an explicit expectation over c, and the step 'DKL(p(xT|c)||p(xT|c))=0' needs to be stated as an assumption about the shared source distribution. Please clarify the notation and fill in the intermediate steps; as written, the preservation-loss upper bound is not fully derived.
minor comments (4)
  1. [Abstract and §3.1] The phrase 'based only on the distributional distance of final generation outputs' is slightly overstated because the first term in Eq. (5) is a log-posterior, not a divergence; please rephrase to avoid confusion.
  2. [§5, Eq. (18)] There is a typo in 'Human Feadback'; it should read 'Human Feedback'.
  3. [Appendix H.4] The text mentions NudeNetv2 in one place and NudeNetv3.4 in another; please specify which detector is used for which table or evaluation set.
  4. [Table 1 and Appendix H.2] Several baseline entries are reported as N/A for CLIP, FID, and SSIM; consider providing these metrics or stating explicitly why they are unavailable, since the 'minimalist' claim is supported partly by those preservation metrics.

Circularity Check

0 steps flagged · score 2.0 of 10

No significant circularity: the derived loss is a genuine surrogate for the stated objective under explicit assumptions, and the only self-citation is an implementation-level checkpointing recipe rather than a load-bearing premise.

full rationale

Equation (16) follows from the stated objective (5) through Bayes' rule, a chain-rule KL decomposition, the explicit Gaussian assumption (8), and the explicit approximation (43) that the modified model's marginal is close to the original model's null-prompt conditional. Each step is a stated assumption or a valid inequality; none of the reported metrics such as ACC, CLIP, FID, or SSIM is a fitted value that is then renamed as a prediction. The main weakness in the derivation, namely that the approximation p_theta(x0) approximately equals p_theta'(x0|c=empty) is not validated against the final mask sparsity, is a soundness gap rather than a circularity, because the approximation is an explicit input to the proof rather than the conclusion assumed. The paper's only overlapping-author citation, Zhang et al. (2024d), is used for step-wise gradient checkpointing and as inspiration for masking; this is an implementation detail and is accompanied by an external citation to Chen et al. (2016), so it does not carry the central claim. Accordingly, no circular reduction is exhibited, and the score reflects only the minor non-load-bearing self-citation per the rubric.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The method introduces no new physical or ontological entities. The learnable binary mask is a standard parameterization, not an invented entity. The main conceptual additions are the two approximations (Gaussian output and null-prompt marginal), which are axioms of the derivation, and the free hyperparameters β, mask learning settings, prompt filtering, and module choice, all of which influence the reported results.

free parameters (5)
  • β (erasure-preservation trade-off) = 0.01 (default)
    Controls the balance between erasing the target concept and preserving neutral outputs. Ablated in Section 4.3, Figure 5. The chosen value affects all reported metrics.
  • Gaussian variance Σ / σ² = not specified; cancels after derivation
    Assumed isotropic covariance for the final output Gaussian in Eq. 8 and Eq. 35. The value is never estimated and is removed as a common coefficient, but the validity of the Gaussian approximation depends on it being small.
  • Mask learning hyperparameters (lr, weight decay, steps) = lr_ffn = lr_norm = 0.5, wd = 1e-2, 400 steps
    Training configuration in Table 6. These are tuned to achieve the reported ACC and FID values.
  • Prompt filtering criteria = not formally specified
    Training prompts are filtered to have consistent backgrounds and distinct foregrounds (Section 3.7). This step improves ACC from 28% to 4% (Table 3), so it is a significant design choice, but the filtering algorithm is not precisely described.
  • Choice of modules to mask (FFN + NORM) = FFN + NORM
    Ablation in Table 4 shows this choice achieves ACC 4% versus 34% for ATTN only. It is a hyperparameter chosen based on the target metric.
assumptions (5)
  • domain assumption The final generated output x0 given initial noise xT follows a Gaussian distribution with small variance Σ (Eq. 8).
    The flow sampling process is deterministic (ODE), so the true conditional is a delta distribution; the Gaussian is a convenient approximation enabling analytic KL computation. The validity of this approximation is not empirically assessed.
  • ad hoc to paper The marginal distribution pθ(x0) can be approximated by the original model's null-prompt conditional pθ'(x0|c=∅) (Appendix B, Eq. 43).
    This assumption is load-bearing for the erasure loss. It is justified in the text by 'the model weight remains mostly unchanged', but the mask sparsity is not reported, so the justification is unverified.
  • domain assumption The source distribution p(xT) is identical under the original and modified models and does not depend on the concept c.
    Used in the KL chain-rule decomposition in Appendix A to set D_KL(p(xT)||p(xT)) = 0. This is standard for flow models where the initial latent is fixed.
  • standard math A discrete binary mask can be optimized via continuous relaxation with hard-discrete sampling (L0 regularization).
    Section 3.6 follows Louizos et al. (2018). This is a standard technique and does not directly bear on the central claim beyond implementation.
  • domain assumption The concept posterior pθ(c|x0) in the original objective (Eq. 5) is a well-defined quantity that can be connected to the generative conditional distributions via Bayes' rule.
    The paper never defines how pθ(c|x0) would be computed; it is used as a conceptual objective and then transformed away. The transformation relies on the null-prompt approximation, making this axiom inseparable from the paper's framework.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Minimalist Concept Erasure in Generative Models." pith.science (2026). https://pith.science/paper/NJEAETY2

@misc{pith2026250713386,
  author       = {Pith},
  title        = {Pith review of: Minimalist Concept Erasure in Generative Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/NJEAETY2}},
  note         = {Machine review of arXiv:2507.13386}
}
read the original abstract

Recent advances in generative models have demonstrated remarkable capabilities in producing high-quality images, but their reliance on large-scale unlabeled data has raised significant safety and copyright concerns. Efforts to address these issues by erasing unwanted concepts have shown promise. However, many existing erasure methods involve excessive modifications that compromise the overall utility of the model. In this work, we address these issues by formulating a novel minimalist concept erasure objective based \emph{only} on the distributional distance of final generation outputs. Building on our formulation, we derive a tractable loss for differentiable optimization that leverages backpropagation through all generation steps in an end-to-end manner. We also conduct extensive analysis to show theoretical connections with other models and methods. To improve the robustness of the erasure, we incorporate neuron masking as an alternative to model fine-tuning. Empirical evaluations on state-of-the-art flow-matching models demonstrate that our method robustly erases concepts without degrading overall model performance, paving the way for safer and more responsible generative models.

Figures

Figures reproduced from arXiv: 2507.13386 by the authors.

Figure 1
Figure 1. Minimalist concept erasure results on FLUX, the latest rectified flow model with 12 billion parameters. We [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Comparing concept erasure with per-step losses, [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Generated images from the unlearned FLUX model using our method and baseline approaches. The visual results [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (10 more)
Figure 4
Figure 4. Figure 4: Samples of adversarial attacks against various baseline methods. The ”Nudity Concepts” category represents [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 6
Figure 6. Figure 6: Ablation results on optimization steps. The un [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Additional visual samples with different unlearned concepts. [PITH_FULL_IMAGE:figures/full_fig_p020_7.png]
Figure 8
Figure 8. Figure 8: NSFW training dataset without filtering. Images are shown in pairs from unsafe prompts and their corresponding [PITH_FULL_IMAGE:figures/full_fig_p021_8.png]
Figure 9
Figure 9. Figure 9: Filtered data from NSFW datasets. We show three filtered examples of image pairs for an inappropriate image [PITH_FULL_IMAGE:figures/full_fig_p021_9.png]
Figure 10
Figure 10. Figure 10: Training Results with dataset without filter and with filter. [PITH_FULL_IMAGE:figures/full_fig_p022_10.png]
Figure 11
Figure 11. Figure 11: Visual samples with different masking modules, Attn, FFN, Norm, and FFN + Norm [PITH_FULL_IMAGE:figures/full_fig_p022_11.png]
Figure 12
Figure 12. Figure 12: ESD validation results on optimization steps with different [PITH_FULL_IMAGE:figures/full_fig_p023_12.png]
Figure 13
Figure 13. Figure 13: Additional Adversarial Attack demos under Ring-A-Bell. The detailed prompts are in Appendix [PITH_FULL_IMAGE:figures/full_fig_p023_13.png]
Figure 14
Figure 14. Figure 14: Visual samples comparing the robustness of unlearned models using neural prompts: Our model vs. baseline [PITH_FULL_IMAGE:figures/full_fig_p024_14.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

22 extracted references · 7 canonical work pages

  1. [1]

    L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al

    Achiam, J., Adler, S., Agarwal, S., Ahmad, L., Akkaya, I., Aleman, F. L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774,

  2. [4]

    Conceptprune: Concept editing in diffusion models via skilled neuron pruning

    Chavhan, R., Li, D., and Hospedales, T. Conceptprune: Concept editing in diffusion models via skilled neuron pruning. arXiv preprint arXiv:2405.19237,

  3. [7]

    Alignment faking in large language models

    Greenblatt, R., Denison, C., Wright, B., Roger, F., MacDi- armid, M., Marks, S., Treutlein, J., Belonax, T., Chen, J., Duvenaud, D., et al. Alignment faking in large language models. arXiv preprint arXiv:2412.14093,

  4. [9]

    Li, X., Shen, Q., Wang, H., and Kawaguchi, K

    Ac- cessed: [02.11.2024]. Li, X., Shen, Q., Wang, H., and Kawaguchi, K. Loreun: Data itself implicitly provides cues to improve machine unlearning. In Neurips Safe Generative AI Workshop 2024,

  5. [10]

    Liu, H., Li, C., Li, Y ., and Lee, Y . J. Improved baselines with visual instruction tuning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 26296–26306, 2024a. Liu, R., Chieh, C. I., Gu, J., Zhang, J., Pi, R., Chen, Q., Torr, P., Khakzar, A., and Pizzati, F. Safetydpo: Scalable safety alignment for text-to-image ...

  6. [11]

    Sdxl: Im- proving latent diffusion models for high-resolution image synthesis

    Podell, D., English, Z., Lacey, K., Blattmann, A., Dockhorn, T., M ¨uller, J., Penna, J., and Rombach, R. Sdxl: Im- proving latent diffusion models for high-resolution image synthesis. arXiv preprint arXiv:2307.01952,

  7. [12]

    Unsafe diffusion: On the generation of unsafe images and hateful memes from text-to-image models

    Qu, Y ., Shen, X., He, X., Backes, M., Zannettou, S., and Zhang, Y . Unsafe diffusion: On the generation of unsafe images and hateful memes from text-to-image models. In Proceedings of the 2023 ACM SIGSAC Conference on Computer and Communications Security, pp. 3403–3417,

  8. [13]

    Laion-400m: Open dataset of clip- filtered 400 million image-text pairs

    10 Minimalist Concept Erasure in Generative Models Schuhmann, C., Vencu, R., Beaumont, R., Kaczmarczyk, R., Mullis, C., Katta, A., Coombes, T., Jitsev, J., and Komatsuzaki, A. Laion-400m: Open dataset of clip- filtered 400 million image-text pairs. arXiv preprint arXiv:2111.02114,

Show all 22 references
  1. [14]

    Unlearning concepts in diffu- sion model via concept domain correction and concept preserving gradient

    Wu, Y ., Zhou, S., Yang, M., Wang, L., Zhu, W., Chang, H., Zhou, X., and Yang, X. Unlearning concepts in diffu- sion model via concept domain correction and concept preserving gradient. arXiv preprint arXiv:2405.15304,

  2. [15]

    Pruning for robust concept eras- ing in diffusion models.arXiv preprint arXiv:2405.16534, 2024a

    Yang, T., Cao, J., and Xu, C. Pruning for robust concept eras- ing in diffusion models.arXiv preprint arXiv:2405.16534, 2024a. Yang, Y ., Gao, R., Wang, X., Ho, T.-Y ., Xu, N., and Xu, Q. Mma-diffusion: Multimodal attack on diffusion models. In Proceedings of the IEEE/CVF Conf...

  3. [16]

    Adversarial attacks and defenses on text-to-image diffusion models: A survey

    Zhang, C., Hu, M., Li, W., and Wang, L. Adversarial attacks and defenses on text-to-image diffusion models: A survey. Information Fusion, pp. 102701, 2024a. Zhang, G., Wang, K., Xu, X., Wang, Z., and Shi, H. Forget- me-not: Learning to forget in text-to-image diffusion models....

  4. [19]

    In this paper, we use the dataset to assess the effectiveness of NSFW content removal methods

    effectively identifies problematic prompts that bypass safety mechanisms, resulting in NSFW content generation. In this paper, we use the dataset to assess the effectiveness of NSFW content removal methods. The publicly available version of this dataset is sourced from Hugging...

  5. [20]

    On the bustling streets of a futuristic city, with neon signs flickering against the rain-soaked pavement, <Concept> stands tall among the crowd

    The I2P dataset comprises real user-generated text- to-image prompts that often produce inappropriate content, including nudity. Our work primarily focuses on removing nudity-related concepts from the I2P dataset. H. Detailed Experiment Settings Training details: Our training ...

  6. [21]

    To ensure a fair and comprehensive comparison, we carefully modified and adapted the experimental setups of the baseline methods to make them compatible with the FLUX model

    and FlowEdit (Kulikov et al., 2024). To ensure a fair and comprehensive comparison, we carefully modified and adapted the experimental setups of the baseline methods to make them compatible with the FLUX model. Additionally, we performed in-depth ablation studies, particularly...

  7. [22]

    shirtless victorian ....en censored nipples ))) ourbrennatursimuldepicted horse nude inging

    and EAP (Bui et al., 2024). However, due to time and resource constraints, the scope of these baseline experiments had to be limited. L. Additional samples image from Adversarial Attack Prompts from Ring-A-Bell Figure 13 presents additional sample images generated from Ring-A-...

  8. [2017]

    cc/paper_files/paper/2017/file/ d5e2c0adad503c91f91df240d0cd4e49-Paper

    URL https://proceedings.neurips. cc/paper_files/paper/2017/file/ d5e2c0adad503c91f91df240d0cd4e49-Paper. pdf. Esser, P., Kulal, S., Blattmann, A., Entezari, R., M¨uller, J., Saini, H., Levi, Y ., Lorenz, D., Sauer, A., Boesel, F., et al. Scaling rectified flow transformers for...

  9. [2019]

    log T −1Y i=0 pθ′(xi|xi+1, c) pθ(xi|xi+1, c) # (63) = Ex0:T ∼pθ′ (x0:T |c)

    11 Minimalist Concept Erasure in Generative Models A. Full Derivation of Preservation Loss As shown in Section 3.2, for preservation loss Lp, we have: Lp = Ec∼CN [DKL [pθ′(x0|c)∥pθ(x0|c)]] . (23) For clear notation, we omit all the dependency on x for all intermediate outputs ...

  10. [2020]

    Flowedit: Inversion-free text-based edit- ing using pre-trained flow models

    Kulikov, V ., Kleiner, M., Huberman-Spiegelglas, I., and Michaeli, T. Flowedit: Inversion-free text-based edit- ing using pre-trained flow models. arXiv preprint arXiv:2412.08629,

  11. [2022]

    Open problems in machine unlearning for ai safety.arXiv preprint arXiv:2501.04952,

    Barez, F., Fu, T., Prabhu, A., Casper, S., Sanyal, A., Bibi, A., O’Gara, A., Kirk, R., Bucknall, B., Fist, T., et al. Open problems in machine unlearning for ai safety.arXiv preprint arXiv:2501.04952,

  12. [2023]

    Training a helpful and harmless assistant with rein- forcement learning from human feedback

    Bai, Y ., Jones, A., Ndousse, K., Askell, A., Chen, A., Das- Sarma, N., Drain, D., Fort, S., Ganguli, D., Henighan, T., et al. Training a helpful and harmless assistant with rein- forcement learning from human feedback. arXiv preprint arXiv:2204.05862,

  13. [2024]

    Training deep nets with sublinear memory cost

    Chen, T., Xu, B., Zhang, C., and Guestrin, C. Training deep nets with sublinear memory cost. arXiv preprint arXiv:1604.06174,

  14. [2025]

    M., Stiennon, N., Wu, J., Brown, T

    Ziegler, D. M., Stiennon, N., Wu, J., Brown, T. B., Radford, A., Amodei, D., Christiano, P., and Irving, G. Fine-tuning language models from human preferences. arXiv preprint arXiv:1909.08593,

Pith tools

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