REVIEW 4 major objections 5 minor 300 references
MOON: Multi-Objective OrthoNormalized Updates for Multitask Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read MOON claims that multi-task gradient manipulation should happen in the spectral-nuclear norm geometry of matrix parameters, not in flattened Euclidean space, and proves Pareto-stationarity convergence at O(T^{-1/2}) deterministic and…
desk verdict Genuinely new geometry for multi-task gradient manipulation, but the convergence theorem covers only a single matrix block, so the headline rates don't formally apply to the blockwise algorithm used in the experiments. 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 object is the nuclear-norm Pareto-stationarity measure G(Theta) = min_{z in Delta_m} ||sum_i z_i grad_i(Theta)||_{S1}, the dual of the spectral-norm minimax subproblem min_W max_i [-<grad_i, W> + 1/2||W||^2_{S∞}]. Its exact solution is C * U V^T, where C is the nuclear norm and U V^T is the polar factor of the weighted aggregate gradient; the polar factor carries the argument because under spectral-norm smoothness it is the steepest descent direction, and the nuclear norm provides a matrix-geometric suboptimality certificate via duality. The proof works by telescoping weighted losses, bounding the momentum-vs-current-gradient error, and using softmax Lipschitzness to control weight drift; finite-step Newton-Schulz error is shown to alter only constants under a uniform approximation condition.
What would settle it
Run MOON under deterministic gradients on a network with at least two interacting weight matrices (for instance, a two-layer linear network) and measure (1/T) sum_t min_z ||sum_i z_i grad_i(Theta_t)||_{S1}; if the measure does not decay at the O($T^{{-1/2}}$) rate (or climbs, or plateaus far above zero) while a single-block toy case does decay, the blockwise transfer claimed is false. Alternatively, a two-block example where each block's polar direction is a descent direction but the coupled update raises a shared loss would falsify the blockwise application.
Extended reading notes
Core claim
MOON establishes that the correct geometry for multi-objective gradient manipulation on matrix-valued parameters is the spectral-nuclear norm pair: each objective is assumed L-smooth with respect to the spectral norm, the common descent direction is chosen by the minimax problem min_W max_i [-<grad_i, W> + 1/2||W||^2_{S∞}], whose dual minimizes the nuclear norm of the weighted aggregate gradient, and the primal solution is the polar factor times the nuclear norm. Because the polar factor discards singular-value magnitudes, the update is governed by singular subspaces rather than by the largest singular components, which the paper identifies as the reason Euclidean flattening is suboptimal under matrix geometry. The paper proves that Algorithm 1 (with momentum, Newton-Schulz polar approximation, and online softmax weight updates) drives the averaged nuclear-norm Pareto-stationarity measure to zero at the stated rates, and that at any fixed iterate the MOON weighting gives a nuclear-norm stationarity certificate no worse than Euclidean min-norm weighting.
Load-bearing premise
The convergence proof assumes a single matrix block and exact polar factors, but the paper applies the construction blockwise and uses Newton-Schulz approximations in practice, so the transfer to full networks rests on approximation conditions not proven for multi-block interaction.
Editorial extensions
If this is right
- MOON attains the standard sublinear rate for smooth non-convex multi-objective optimization: O(T^{-1/2}) deterministic, O(T^{-1/4}) with unbiased bounded-variance stochastic gradients.
- At any fixed iterate, the MOON dual weighting yields a nuclear-norm Pareto-stationarity certificate no larger than Euclidean min-norm (MGDA-type) weighting, so the matrix-geometric dual is never worse at that iterate.
- The polar-factor update removes singular-value magnitude information, so updates are driven by singular subspaces, which the paper argues is why MOON avoids being dominated by large singular components and converges faster in practice.
- The practical algorithm's finite Newton-Schulz approximation preserves the O(T^{-1/2}) rate whenever the approximation error is uniformly bounded below 1 in operator norm.
- On the tested benchmarks (MultiMNIST, NYU-v2, CityScapes, QM9, CelebA), MOON reduces the average performance drop and reaches the same training loss faster in wall-clock time.
Reading between the lines
- A natural extension the paper does not develop: replacing the spectral norm by Schatten p-norms would interpolate between polar-factor updates (p = infinity) and Euclidean updates, giving a tunable family whose rates should degrade continuously.
- The nuclear-norm certificate suggests a practical diagnostic: monitor min_z ||sum_i z_i grad_i(Theta)||_{S1} during training as a geometric early-stopping or task-conflict signal, independent of validation metrics.
- If the blockwise convergence gap is closed, the same spectral-nuclear geometry could be composed with block preconditioners to yield multi-objective optimizers for very large models.
- The two-task toy example shows the benefit is not update scaling: under an equal spectral-norm budget, the MOON direction gives strictly larger common descent, implying the geometry itself, not step size, drives the gain.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MOON, a multi-task learning method that performs gradient manipulation under spectral--nuclear norm geometry for matrix-valued parameters. The main algorithmic update aggregates task gradients with learned simplex weights, applies momentum, and uses the polar factor of the momentum matrix as the update direction, with a finite Newton--Schulz approximation in practice. The theoretical contribution is a convergence analysis for smooth, possibly non-convex objectives: an averaged nuclear-norm Pareto-stationarity measure converges at rate O(T^{-1/2}) with exact gradients and O(T^{-1/4}) with unbiased stochastic gradients. The empirical section reports results on MultiMNIST, NYU-v2, CityScapes, QM9, and CelebA, plus toy, synthetic, and large-language-model fine-tuning experiments, claiming faster convergence and competitive or better final performance relative to Euclidean MOO baselines.
Significance. If the central claims hold, MOON is a principled bridge between matrix-aware optimizers such as Muon and multi-objective gradient manipulation, and the reported experiments suggest practical gains in wall-clock efficiency and final task quality. The paper has genuine strengths: the dual derivation via spectral--nuclear norm duality is elegant, the comparison inequality (Eq. 10) follows from feasibility rather than fitting, the descent lemmas in the appendix are explicit and internally consistent for the single-block setting, and the authors provide code, ablations, and a separate appendix addressing finite-step Newton--Schulz approximation. However, the convergence theory is developed only for a single matrix-valued parameter block, whereas the algorithm is applied blockwise to full networks; this is a load-bearing scope gap because the advertised rates are claimed for the network algorithm actually used in the experiments.
major comments (4)
- [Section 'Multi-Objective Orthonormalized Updates' and Section 'Convergence Analysis'] The convergence analysis is stated for a single matrix block Θ in R^{p×q}, with every lemma and theorem assuming ℓ_i is L-smooth with respect to the spectral norm and that the update is Θ_{t+1} = Θ_t − α W_t for one matrix. Algorithm 1, however, is applied to full networks by the sentence 'the same construction is applied blockwise', and no joint norm, joint Pareto-stationarity measure, or descent lemma for a product of blocks is provided. The stationarity measure G(Θ) = min_z ||Σ z_i ∇ℓ_i(Θ)||_{S1} is not well-defined when ∇ℓ_i is a tuple of block gradients, and cross-block interactions are not controlled by the single-block proof. Since the O(T^{-1/2}) and O(T^{-1/4}) rates are the paper's central theoretical claim, this gap must be closed by either extending the analysis to blockwise parameterizations or sharply restricting the stated claims to the single-block setting.
- [Proposition 3, Section 'Multi-Objective Orthonormalized Updates'] Proposition 3 states that the dual of the minimax problem (7) is min_{z∈Δ_m} (1/2)||Σ z_i ∇ℓ_i(Θ_t)||_{S1}^2 and that the exact primal solution is recovered as C U V^T with C equal to the nuclear norm of the weighted gradient. This is a central step in the derivation, yet no proof is given in the main text or the appendix. A standard Fenchel-duality argument can establish the result, but the manuscript should include it explicitly, and it should also address the rank-deficient case rather than assuming full rank.
- [Section G 'Limitations' and Appendix D] The Limitations section states that the Newton--Schulz approximation error is omitted from the current analysis and 'leave[s] its precise theoretical characterization to future work', but Appendix D does precisely the opposite: it introduces Assumption 4, proves Lemmas 5--7, and derives Theorem 8, concluding that a fixed number q of Newton--Schulz iterations preserves the O(T^{-1/2}) deterministic rate up to a factor 1/(1−ε_q). These two passages directly contradict each other. Moreover, the stochastic setting is dismissed with 'the same argument' after conditioning on the history, without a formal statement or proof. The authors should reconcile the limitation statement with Appendix D and provide the full stochastic Newton--Schulz analysis if Theorem 2 is to be claimed for Algorithm 1 as implemented.
- [Theorem 2 and Appendix A.4] Theorem 2 is stated for Algorithm 1, but Algorithm 1 computes W_t by Newton--Schulz iterations while the proof of Theorem 6 assumes the exact polar factor of the momentum matrix. The stochastic proof also uses δ_t = [⟨W_t, ∇ℓ_1(Θ_t)⟩, ..., ⟨W_t, ∇ℓ_m(Θ_t)⟩] while the stochastic model assumes access only to unbiased stochastic gradients; the manuscript does not specify how δ_t is computed from stochastic gradients in the analysis. These mismatches between the theorem statement, the algorithm, and the proof assumptions should be resolved or explicitly declared as idealized analysis.
minor comments (5)
- [Introduction] The sentence 'creates a theoretical gap between their underlying assumptions, creates a mismatch between their underlying optimization principles' contains a duplicated and ungrammatical construction; please revise.
- [Tables 1--4] The baseline results are reported without standard deviations, while Appendix F.9 reports error bars only for MOON. Given that the empirical claims rest on comparisons over three seeds, adding error bars for the baselines (or stating that they are omitted for space) would substantially strengthen the comparison.
- [Table 4 and Appendix F] Several table entries contain formatting errors, for example the SI row in Table 4 reads '135.71.00' and '4.5155.3', and Appendix F.7 uses 'Euclidian' instead of 'Euclidean'. These should be corrected.
- [Theorems 1 and 2] The notation min_{z*_t∈Δ_m} ||∇L(Θ_t) z*_t||_{S1} is ambiguous because ∇L(Θ_t) is not defined as a matrix for a tuple of task gradients; writing Σ_{i=1}^m z_i ∇ℓ_i(Θ_t) would be clearer.
- [Appendix D] Assumption 4 is a uniform, trajectory-dependent bound on the Newton--Schulz approximation error, but no empirical estimate of ε_q is provided for the experiments; a measurement or a justification of why the bound is reasonable for the tested architectures would be helpful.
Circularity Check
No circular derivation: MOON's convergence theory and empirical benchmarks are self-contained; only non-circular scope gaps remain.
full rationale
MOON's central derivation, Proposition 2–3, starts from a spectral-norm quadratic upper bound and derives the dual nuclear-norm weighting subproblem and polar-factor primal solution by Lagrangian duality; nothing in this step presupposes the convergence measure G(Θ). The convergence proofs (Theorems 3–6) bound G(Θ_t) by the algorithm's own weighted aggregate ||Σ_i z_{i,t} ∇ℓ_i(Θ_t)||_{S1}, then control that quantity through the softmax/momentum lemmas and telescoping of the weighted losses—an inequality-chain argument, not an identity that reinstalls the target. Equation (10) is an optimality/feasibility inequality for the dual minimizer, so it is a genuine mathematical property rather than a fitted quantity relabeled as a prediction. The empirical sections compare MOON against external baselines on MultiMNIST, NYU-v2, CityScapes, QM9, and CelebA, and the ablations isolate the orthonormalized update and momentum; no fitted parameter is renamed a prediction. The self-citations (Zhou et al. 2022 and He et al. 2024) are contextual literature references and are not load-bearing. Two manuscript-level gaps are real but are not circularity: the single-block convergence proof is asserted to extend blockwise ('the same construction is applied blockwise') without a joint stationarity measure or descent lemma, and Section G says Newton–Schulz error is 'omitted' from the analysis while Appendix D analyzes exactly that error; both are correctness/scoping concerns, not cases of the derivation reducing to its inputs. Therefore no circular step is identified.
Assumptions & free parameters
free parameters (5)
- learning rate alpha =
not stated; validation-tuned
- task-weight step size beta =
not stated; validation-tuned (ablation in Table 8)
- logit weight decay gamma =
not stated; validation-tuned (ablation in Table 7)
- momentum mu =
not stated; presumably tuned
- Newton-Schulz iterations q =
not stated
assumptions (5)
- domain assumption Each objective ell_i is L-smooth with respect to the spectral norm: ||nabla ell_i(Theta) - nabla ell_i(Theta')||_{S1} <= L ||Theta - Theta'||_{Sinfty} (Assumption 1, Appendix A.1).
- domain assumption Gradients and losses are uniformly bounded: ||nabla ell_i(Theta_t)||_{S1} <= H and |ell_i(Theta_t)| <= B (Assumptions 2-3).
- ad hoc to paper The finite-step Newton-Schulz approximation errors satisfy the uniform bound epsilon_{t,q} <= epsilon_q < 1 (Assumption 4, Appendix D).
- standard math Proposition 1 from Bernstein and Newhouse (2024): steepest descent under the spectral norm is the polar factor of the gradient.
- domain assumption For multiple matrix blocks, the same construction applies blockwise (Section 'Multi-Objective Orthonormalized Updates').
Cite this review
Pith. "Pith review of MOON: Multi-Objective OrthoNormalized Updates for Multitask Learning." pith.science (2026). https://pith.science/paper/RDMAFZNE
@misc{pith2026260811749,
author = {Pith},
title = {Pith review of: MOON: Multi-Objective OrthoNormalized Updates for Multitask Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/RDMAFZNE}},
note = {Machine review of arXiv:2608.11749}
}
abstract
Multi-objective optimization (MOO) has demonstrated significant success in multi-task learning by mitigating task conflicts through gradient manipulation. However, most existing methods flatten model parameters into vectors and perform gradient manipulation under Euclidean geometry, thereby overlooking the matrix structure prevalent in modern architectures such as Transformers. In this paper, we show that gradient manipulation in Euclidean space does not generally yield the steepest descent direction under matrix geometry, potentially limiting optimization efficiency. Drawing from the theory of steepest descent for matrix-valued parameters, we propose MOON (Multi-Objective OrthoNormalized Updates), which performs gradient manipulation under spectral--nuclear norm geometry and uses the orthonormalized manipulated gradient for parameter updates. Theoretically, for smooth non-convex objectives, we establish convergence of the averaged Pareto-stationarity measure at rates of $\mathcal{O}(T^{-1/2})$ in the deterministic setting and $\mathcal{O}(T^{-1/4})$ under stochastic gradients. Empirical results across various benchmarks show that MOON consistently improves both optimization efficiency and final multi-task performance. Our code is available at https://github.com/KunlinLyu/MOON.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
Proceedings of the IEEE international conference on computer vision , pages=
Unpaired image-to-image translation using cycle-consistent adversarial networks , author=. Proceedings of the IEEE international conference on computer vision , pages=
-
[2]
Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
Ablating concepts in text-to-image diffusion models , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
-
[3]
Journal of machine learning research , volume=
Fundamental limits and tradeoffs in invariant representation learning , author=. Journal of machine learning research , volume=
-
[4]
International Conference on Machine Learning (ICML) , year=
Robust multi-task learning with excess risks , author=. International Conference on Machine Learning (ICML) , year=
-
[5]
Proceedings of the 22nd ACM SIGSAC conference on computer and communications security , pages=
Model inversion attacks that exploit confidence information and basic countermeasures , author=. Proceedings of the 22nd ACM SIGSAC conference on computer and communications security , pages=
-
[6]
Advances in Neural Information Processing Systems , volume=
Trade-offs and guarantees of adversarial representation learning for information obfuscation , author=. Advances in Neural Information Processing Systems , volume=
-
[7]
Advances in Neural Information Processing Systems , volume=
Famo: Fast adaptive multitask optimization , author=. Advances in Neural Information Processing Systems , volume=
-
[8]
Advances in Neural Information Processing Systems , volume=
Revisiting scalarization in multi-task learning: A theoretical perspective , author=. Advances in Neural Information Processing Systems , volume=
Show all 300 references
-
[9]
arXiv preprint arXiv:2408.00376 , year=
On the Limitations and Prospects of Machine Unlearning for Generative AI , author=. arXiv preprint arXiv:2408.00376 , year=
-
[10]
Optimization Letters , pages=
Convergence rates analysis of a multiobjective proximal gradient method , author=. Optimization Letters , pages=. 2022 , publisher=
2022
-
[11]
Optimization Methods and Software , volume=
Complexity of gradient descent for multiobjective optimization , author=. Optimization Methods and Software , volume=. 2019 , publisher=
2019
-
[12]
SIAM Journal on Optimization , volume=
Direct multisearch for multiobjective optimization , author=. SIAM Journal on Optimization , volume=
-
[13]
IEEE Transactions on Evolutionary Computation , volume=
Multiobjective evolutionary algorithms: a comparative case study and the strength Pareto approach , author=. IEEE Transactions on Evolutionary Computation , volume=. 1999 , publisher=
1999
-
[14]
GitHub repository , howpublished =
Romain Beaumont , title =. GitHub repository , howpublished =. 2022 , publisher =
2022
-
[15]
2021 , howpublished =
ChatGPT , author =. 2021 , howpublished =
2021
-
[16]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Safe latent diffusion: Mitigating inappropriate degeneration in diffusion models , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[17]
Advances in neural information processing systems , volume=
Gans trained by a two time-scale update rule converge to a local nash equilibrium , author=. Advances in neural information processing systems , volume=
-
[18]
International Conference on Learning Representations , year=
Denoising Diffusion Implicit Models , author=. International Conference on Learning Representations , year=
-
[19]
Advances in neural information processing systems , volume=
Denoising diffusion probabilistic models , author=. Advances in neural information processing systems , volume=
-
[20]
2023 , eprint=
Learn to Unlearn: A Survey on Machine Unlearning , author=. 2023 , eprint=
2023
-
[21]
Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=
Unified concept editing in diffusion models , author=. Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=
-
[22]
arXiv preprint arXiv:2207.12598 , year=
Classifier-free diffusion guidance , author=. arXiv preprint arXiv:2207.12598 , year=
-
[23]
arXiv preprint arXiv:2312.16145 , year=
One-dimensional Adapter to Rule Them All: Concepts, Diffusion Models and Erasing Applications , author=. arXiv preprint arXiv:2312.16145 , year=
-
[24]
Advances in Neural Information Processing Systems , volume=
Gradient surgery for multi-task learning , author=. Advances in Neural Information Processing Systems , volume=
-
[25]
Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
Prompt-aligned gradient for prompt tuning , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
-
[26]
Communications of the ACM , volume=
Generative adversarial networks , author=. Communications of the ACM , volume=. 2020 , publisher=
2020
-
[27]
IJCV 2023 , year=
CLIP-Adapter: Better Vision-language Models with Feature Adapters , author=. IJCV 2023 , year=
2023
-
[28]
CVPR 2022 , year=
PointCLIP: Point Cloud Understanding by CLIP , author=. CVPR 2022 , year=
2022
-
[29]
ICLR 2024 , year=
LLaMA-Adapter: Efficient Fine-tuning of Language Models with Zero-init Attention , author=. ICLR 2024 , year=
2024
-
[30]
ICCV 2023 , year=
Not all features matter: Enhancing few-shot clip with adaptive prior refinement , author=. ICCV 2023 , year=
2023
-
[31]
CVPR 2023 , year=
Prompt, Generate, then Cache: Cascade of Foundation Models makes Strong Few-shot Learners , author=. CVPR 2023 , year=
2023
-
[32]
arXiv preprint arXiv:2304.15010 , year=
Llama-adapter v2: Parameter-efficient visual instruction model , author=. arXiv preprint arXiv:2304.15010 , year=
-
[33]
FirstName Alpher and FirstName Gamow , title =
-
[34]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
On the effectiveness of parameter-efficient fine-tuning , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[35]
Communication, Simulation, and Intelligent Agents: Implications of Personal Intelligent Machines for Medical Education
Clancey, William J. Communication, Simulation, and Intelligent Agents: Implications of Personal Intelligent Machines for Medical Education. Proceedings of the Eighth International Joint Conference on Artificial Intelligence (IJCAI-83)
-
[36]
Classification Problem Solving
Clancey, William J. Classification Problem Solving. Proceedings of the Fourth National Conference on Artificial Intelligence
-
[37]
, title =
Robinson, Arthur L. , title =. 1980 , doi =. https://science.sciencemag.org/content/208/4447/1019.full.pdf , journal =
1980
-
[38]
New Ways to Make Microcircuits Smaller---Duplicate Entry
Robinson, Arthur L. New Ways to Make Microcircuits Smaller---Duplicate Entry. Science
-
[39]
Clancey and Glenn Rennels , abstract =
Diane Warner Hasling and William J. Clancey and Glenn Rennels , abstract =. Strategic explanations for a diagnostic consultation system , journal =. 1984 , issn =. doi:https://doi.org/10.1016/S0020-7373(84)80003-6 , url =
1984 doi
-
[40]
and Rennels, Glenn R
Hasling, Diane Warner and Clancey, William J. and Rennels, Glenn R. and Test, Thomas. Strategic Explanations in Consultation---Duplicate. The International Journal of Man-Machine Studies
-
[41]
Poligon: A System for Parallel Problem Solving
Rice, James. Poligon: A System for Parallel Problem Solving
-
[42]
Transfer of Rule-Based Expertise through a Tutorial Dialogue
Clancey, William J. Transfer of Rule-Based Expertise through a Tutorial Dialogue
-
[43]
The Engineering of Qualitative Models
Clancey, William J. The Engineering of Qualitative Models
-
[44]
2017 , eprint=
Attention Is All You Need , author=. 2017 , eprint=
2017
-
[45]
Pluto: The 'Other' Red Planet
NASA. Pluto: The 'Other' Red Planet
-
[46]
International conference on machine learning , pages=
Learning transferable visual models from natural language supervision , author=. International conference on machine learning , pages=. 2021 , organization=
2021
-
[47]
International Conference on Machine Learning , pages=
Ofa: Unifying architectures, tasks, and modalities through a simple sequence-to-sequence learning framework , author=. International Conference on Machine Learning , pages=. 2022 , organization=
2022
-
[48]
Advances in Neural Information Processing Systems , volume=
Flamingo: a visual language model for few-shot learning , author=. Advances in Neural Information Processing Systems , volume=
-
[49]
arXiv preprint arXiv:2208.10442 , year=
Image as a foreign language: Beit pretraining for all vision and vision-language tasks , author=. arXiv preprint arXiv:2208.10442 , year=
-
[50]
arXiv preprint arXiv:2301.12597 , year=
Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models , author=. arXiv preprint arXiv:2301.12597 , year=
-
[51]
arXiv preprint arXiv:2302.14045 , year=
Language is not all you need: Aligning perception with language models , author=. arXiv preprint arXiv:2302.14045 , year=
-
[52]
arXiv preprint arXiv:2209.06794 , year=
Pali: A jointly-scaled multilingual language-image model , author=. arXiv preprint arXiv:2209.06794 , year=
-
[53]
2021 , eprint=
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale , author=. 2021 , eprint=
2021
-
[54]
Advances in neural information processing systems , volume=
Language models are few-shot learners , author=. Advances in neural information processing systems , volume=
-
[55]
Computer Vision--ECCV 2022: 17th European Conference, Tel Aviv, Israel, October 23--27, 2022, Proceedings, Part XXXIII , pages=
Visual prompt tuning , author=. Computer Vision--ECCV 2022: 17th European Conference, Tel Aviv, Israel, October 23--27, 2022, Proceedings, Part XXXIII , pages=. 2022 , organization=
2022
-
[56]
arXiv preprint arXiv:2203.16329 , year=
Parameter-efficient fine-tuning for vision transformers , author=. arXiv preprint arXiv:2203.16329 , year=
-
[57]
International Conference on Machine Learning , pages=
Parameter-efficient transfer learning for NLP , author=. International Conference on Machine Learning , pages=. 2019 , organization=
2019
-
[58]
arXiv preprint arXiv:2106.09685 , year=
Lora: Low-rank adaptation of large language models , author=. arXiv preprint arXiv:2106.09685 , year=
-
[59]
arXiv preprint arXiv:2101.00190 , year=
Prefix-tuning: Optimizing continuous prompts for generation , author=. arXiv preprint arXiv:2101.00190 , year=
-
[60]
arXiv preprint arXiv:2111.06719 , year=
On transferability of prompt tuning for natural language understanding , author=. arXiv preprint arXiv:2111.06719 , year=
-
[61]
arXiv preprint arXiv:2110.07904 , year=
Spot: Better frozen model adaptation through soft prompt transfer , author=. arXiv preprint arXiv:2110.07904 , year=
-
[62]
arXiv preprint arXiv:2210.08823 , year=
Scaling & shifting your features: A new baseline for efficient model tuning , author=. arXiv preprint arXiv:2210.08823 , year=
-
[63]
Optimal brain damage , author=
-
[64]
ArXiv , year=
Pruning Filters for Efficient ConvNets , author=. ArXiv , year=
-
[65]
ArXiv , year=
The Lottery Ticket Hypothesis for Pre-trained BERT Networks , author=. ArXiv , year=
-
[66]
Conference on Empirical Methods in Natural Language Processing , year=
When BERT Plays the Lottery, All Tickets Are Winning , author=. Conference on Empirical Methods in Natural Language Processing , year=
-
[67]
ArXiv , year=
Towards a Unified View of Parameter-Efficient Transfer Learning , author=. ArXiv , year=
-
[68]
arXiv preprint arXiv:2303.08566 , year=
Sensitivity-Aware Visual Parameter-Efficient Tuning , author=. arXiv preprint arXiv:2303.08566 , year=
-
[69]
Annual Meeting of the Association for Computational Linguistics , year=
Universal Language Model Fine-tuning for Text Classification , author=. Annual Meeting of the Association for Computational Linguistics , year=
-
[70]
Advances in neural information processing systems , volume=
Attention is all you need , author=. Advances in neural information processing systems , volume=
-
[71]
Proceedings of the IEEE/CVF international conference on computer vision , pages=
Swin transformer: Hierarchical vision transformer using shifted windows , author=. Proceedings of the IEEE/CVF international conference on computer vision , pages=
-
[72]
arXiv preprint arXiv:1912.00528 , year=
The intriguing role of module criticality in the generalization of deep networks , author=. arXiv preprint arXiv:1912.00528 , year=
1912 arXiv
-
[73]
Advances in Neural Information Processing Systems , volume=
Intriguing properties of vision transformers , author=. Advances in Neural Information Processing Systems , volume=
-
[74]
Advances in Neural Information Processing Systems , volume=
Do vision transformers see like convolutional neural networks? , author=. Advances in Neural Information Processing Systems , volume=
-
[75]
arXiv preprint arXiv:1902.01996 , year=
Are all layers created equal? , author=. arXiv preprint arXiv:1902.01996 , year=
1902 arXiv
-
[76]
arXiv preprint arXiv:2202.10054 , year=
Fine-tuning can distort pretrained features and underperform out-of-distribution , author=. arXiv preprint arXiv:2202.10054 , year=
-
[77]
Advances in neural information processing systems , volume=
How transferable are features in deep neural networks? , author=. Advances in neural information processing systems , volume=
-
[78]
ArXiv , year=
Supervised Contrastive Learning , author=. ArXiv , year=
-
[79]
Communications of the ACM , year=
ImageNet classification with deep convolutional neural networks , author=. Communications of the ACM , year=
-
[80]
Digital Signal Processing: Principles, Algorithms, and Applications , author=
-
[81]
International Conference on Machine Learning , year=
Learning Important Features Through Propagating Activation Differences , author=. International Conference on Machine Learning , year=
-
[82]
Machine Learning , year=
Towards interpreting deep neural networks via layer behavior understanding , author=. Machine Learning , year=
-
[83]
IEEE Transactions on Radiation and Plasma Medical Sciences , year=
On Interpretability of Artificial Neural Networks: A Survey , author=. IEEE Transactions on Radiation and Plasma Medical Sciences , year=
-
[84]
ArXiv , year=
PAC-Bayes Information Bottleneck , author=. ArXiv , year=
-
[85]
Advances in neural information processing systems , volume=
Learning multiple visual domains with residual adapters , author=. Advances in neural information processing systems , volume=
-
[86]
arXiv preprint arXiv:1909.08478 , year=
Simple, scalable adaptation for neural machine translation , author=. arXiv preprint arXiv:1909.08478 , year=
1909 arXiv
-
[87]
arXiv preprint arXiv:2007.07779 , year=
Adapterhub: A framework for adapting transformers , author=. arXiv preprint arXiv:2007.07779 , year=
2007 arXiv
-
[88]
International Conference on Machine Learning , pages=
Bert and pals: Projected attention layers for efficient adaptation in multi-task learning , author=. International Conference on Machine Learning , pages=. 2019 , organization=
2019
-
[89]
arXiv preprint arXiv:2106.04489 , year=
Parameter-efficient multi-task fine-tuning for transformers via shared hypernetworks , author=. arXiv preprint arXiv:2106.04489 , year=
-
[90]
Advances in Neural Information Processing Systems , volume=
Compacter: Efficient low-rank hypercomplex adapter layers , author=. Advances in Neural Information Processing Systems , volume=
-
[91]
Computer Vision--ECCV 2022: 17th European Conference, Tel Aviv, Israel, October 23--27, 2022, Proceedings, Part XXXV , pages=
Prompting visual-language models for efficient video understanding , author=. Computer Vision--ECCV 2022: 17th European Conference, Tel Aviv, Israel, October 23--27, 2022, Proceedings, Part XXXV , pages=. 2022 , organization=
2022
-
[92]
arXiv preprint arXiv:2012.15723 , year=
Making pre-trained language models better few-shot learners , author=. arXiv preprint arXiv:2012.15723 , year=
2012 arXiv
-
[93]
arXiv preprint arXiv:2108.02035 , year=
Knowledgeable prompt-tuning: Incorporating knowledge into prompt verbalizer for text classification , author=. arXiv preprint arXiv:2108.02035 , year=
-
[94]
ACM Computing Surveys , volume=
Pre-train, prompt, and predict: A systematic survey of prompting methods in natural language processing , author=. ACM Computing Surveys , volume=. 2023 , publisher=
2023
-
[95]
arXiv preprint arXiv:2111.01998 , year=
Openprompt: An open-source framework for prompt-learning , author=. arXiv preprint arXiv:2111.01998 , year=
-
[96]
Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers) , pages=
P-tuning: Prompt tuning can be comparable to fine-tuning across scales and tasks , author=. Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers) , pages=
-
[97]
arXiv preprint arXiv:2005.00247 , year=
AdapterFusion: Non-destructive task composition for transfer learning , author=. arXiv preprint arXiv:2005.00247 , year=
2005 arXiv
-
[98]
arXiv preprint arXiv:2010.11918 , year=
Adapterdrop: On the efficiency of adapters in transformers , author=. arXiv preprint arXiv:2010.11918 , year=
2010 arXiv
-
[99]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Vl-adapter: Parameter-efficient transfer learning for vision-and-language tasks , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[100]
arXiv preprint arXiv:2111.03930 , year=
Tip-adapter: Training-free clip-adapter for better vision-language modeling , author=. arXiv preprint arXiv:2111.03930 , year=
-
[101]
arXiv preprint arXiv:2002.01808 , year=
K-adapter: Infusing knowledge into pre-trained models with adapters , author=. arXiv preprint arXiv:2002.01808 , year=
2002 arXiv
-
[102]
arXiv preprint arXiv:2106.10199 , year=
Bitfit: Simple parameter-efficient fine-tuning for transformer-based masked language-models , author=. arXiv preprint arXiv:2106.10199 , year=
-
[103]
arXiv preprint arXiv:2012.07463 , year=
Parameter-efficient transfer learning with diff pruning , author=. arXiv preprint arXiv:2012.07463 , year=
2012 arXiv
-
[104]
arXiv preprint arXiv:2004.12406 , year=
Masking as an efficient alternative to finetuning for pretrained language models , author=. arXiv preprint arXiv:2004.12406 , year=
2004 arXiv
-
[105]
arXiv preprint arXiv:1803.03635 , year=
The lottery ticket hypothesis: Finding sparse, trainable neural networks , author=. arXiv preprint arXiv:1803.03635 , year=
-
[106]
Advances in neural information processing systems , volume=
Learning both weights and connections for efficient neural network , author=. Advances in neural information processing systems , volume=
-
[107]
arXiv preprint arXiv:1902.09574 , year=
The state of sparsity in deep neural networks , author=. arXiv preprint arXiv:1902.09574 , year=
1902 arXiv
-
[108]
arXiv preprint arXiv:1510.00149 , year=
Deep compression: Compressing deep neural networks with pruning, trained quantization and huffman coding , author=. arXiv preprint arXiv:1510.00149 , year=
-
[109]
IEEE Transactions on systems, Man, and Cybernetics , volume=
Benefits of gain: Speeded learning and minimal hidden layers in back-propagation networks , author=. IEEE Transactions on systems, Man, and Cybernetics , volume=. 1991 , publisher=
1991
-
[110]
arXiv preprint arXiv:1608.08710 , year=
Pruning filters for efficient convnets , author=. arXiv preprint arXiv:1608.08710 , year=
-
[111]
Advances in neural information processing systems , volume=
Learning structured sparsity in deep neural networks , author=. Advances in neural information processing systems , volume=
-
[112]
Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
Spottune: transfer learning through adaptive fine-tuning , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
-
[113]
arXiv preprint arXiv:2109.05687 , year=
Raise a child in large language model: Towards effective and generalizable fine-tuning , author=. arXiv preprint arXiv:2109.05687 , year=
-
[114]
arXiv preprint arXiv:1810.04805 , year=
Bert: Pre-training of deep bidirectional transformers for language understanding , author=. arXiv preprint arXiv:1810.04805 , year=
-
[115]
arXiv preprint arXiv:2103.11886 , year=
Deepvit: Towards deeper vision transformer , author=. arXiv preprint arXiv:2103.11886 , year=
-
[116]
International Conference on Machine Learning , pages=
Understanding the robustness in vision transformers , author=. International Conference on Machine Learning , pages=. 2022 , organization=
2022
-
[117]
2011 , author=
The caltech-ucsd birds-200-2011 dataset. 2011 , author=
2011
-
[118]
Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages=
Building a bird recognition app and large scale dataset with citizen scientists: The fine print in fine-grained dataset collection , author=. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages=
-
[119]
2008 Sixth Indian Conference on Computer Vision, Graphics & Image Processing , pages=
Automated flower classification over a large number of classes , author=. 2008 Sixth Indian Conference on Computer Vision, Graphics & Image Processing , pages=. 2008 , organization=
2008
-
[120]
Novel dataset for fine-grained image categorization: Stanford dogs , author=. Proc. CVPR workshop on fine-grained visual categorization (FGVC) , volume=. 2011 , organization=
2011
-
[121]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Fine-grained car detection for visual census estimation , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[122]
arXiv preprint arXiv:1910.04867 , year=
A large-scale study of representation learning with the visual task adaptation benchmark , author=. arXiv preprint arXiv:1910.04867 , year=
1910 arXiv
-
[123]
2009 , publisher=
Learning multiple layers of features from tiny images , author=. 2009 , publisher=
2009
-
[124]
2009 IEEE conference on computer vision and pattern recognition , pages=
Imagenet: A large-scale hierarchical image database , author=. 2009 IEEE conference on computer vision and pattern recognition , pages=. 2009 , organization=
2009
-
[125]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
A convnet for the 2020s , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[126]
arXiv preprint arXiv:1412.6980 , year=
Adam: A method for stochastic optimization , author=. arXiv preprint arXiv:1412.6980 , year=
-
[127]
Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
The many faces of robustness: A critical analysis of out-of-distribution generalization , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
-
[128]
arXiv preprint arXiv:1903.12261 , year=
Benchmarking neural network robustness to common corruptions and perturbations , author=. arXiv preprint arXiv:1903.12261 , year=
1903 arXiv
-
[129]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Natural adversarial examples , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
- [130]
-
[131]
2023 , eprint=
SAM Fails to Segment Anything? -- SAM-Adapter: Adapting SAM in Underperformed Scenes: Camouflage, Shadow, and More , author=. 2023 , eprint=
2023
-
[132]
Medical Image Computing and Computer-Assisted Intervention--MICCAI 2015: 18th International Conference, Munich, Germany, October 5-9, 2015, Proceedings, Part III 18 , pages=
U-net: Convolutional networks for biomedical image segmentation , author=. Medical Image Computing and Computer-Assisted Intervention--MICCAI 2015: 18th International Conference, Munich, Germany, October 5-9, 2015, Proceedings, Part III 18 , pages=. 2015 , organization=
2015
-
[133]
IEEE transactions on pattern analysis and machine intelligence , volume=
One-shot learning of object categories , author=. IEEE transactions on pattern analysis and machine intelligence , volume=. 2006 , publisher=
2006
-
[134]
Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
Describing textures in the wild , author=. Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
-
[135]
2012 IEEE conference on computer vision and pattern recognition , pages=
Cats and dogs , author=. 2012 IEEE conference on computer vision and pattern recognition , pages=. 2012 , organization=
2012
-
[136]
Reading digits in natural images with unsupervised feature learning , author=
-
[137]
2010 IEEE computer society conference on computer vision and pattern recognition , pages=
Sun database: Large-scale scene recognition from abbey to zoo , author=. 2010 IEEE computer society conference on computer vision and pattern recognition , pages=. 2010 , organization=
2010
-
[138]
Medical Image Computing and Computer Assisted Intervention--MICCAI 2018: 21st International Conference, Granada, Spain, September 16-20, 2018, Proceedings, Part II 11 , pages=
Rotation equivariant CNNs for digital pathology , author=. Medical Image Computing and Computer Assisted Intervention--MICCAI 2018: 21st International Conference, Granada, Spain, September 16-20, 2018, Proceedings, Part II 11 , pages=. 2018 , organization=
2018
-
[139]
IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing , volume=
Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification , author=. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing , volume=. 2019 , publisher=
2019
-
[140]
Proceedings of the IEEE , volume=
Remote sensing image scene classification: Benchmark and state of the art , author=. Proceedings of the IEEE , volume=. 2017 , publisher=
2017
-
[141]
University of Warwick , pages=
Kaggle diabetic retinopathy detection competition report , author=. University of Warwick , pages=
-
[142]
Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
Clevr: A diagnostic dataset for compositional language and elementary visual reasoning , author=. Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
-
[143]
arXiv preprint arXiv:1612.03801 , year=
Deepmind lab , author=. arXiv preprint arXiv:1612.03801 , year=
-
[144]
The International Journal of Robotics Research , volume=
Vision meets robotics: The kitti dataset , author=. The International Journal of Robotics Research , volume=. 2013 , publisher=
2013
-
[145]
dsprites: Disentanglement testing sprites dataset , author=
-
[146]
Proceedings of the 2004 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, 2004
Learning methods for generic object recognition with invariance to pose and lighting , author=. Proceedings of the 2004 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, 2004. CVPR 2004. , volume=. 2004 , organization=
2004
-
[147]
2020 , eprint=
Medico Multimedia Task at MediaEval 2020: Automatic Polyp Segmentation , author=. 2020 , eprint=
2020
-
[148]
Nature Machine Intelligence , volume=
Parameter-efficient fine-tuning of large-scale pre-trained language models , author=. Nature Machine Intelligence , volume=
-
[149]
arXiv preprint arXiv:2310.10683 , year=
Large Language Model Unlearning , author=. arXiv preprint arXiv:2310.10683 , year=
-
[150]
arXiv preprint arXiv:2310.07579 , year=
In-context unlearning: Language models as few shot unlearners , author=. arXiv preprint arXiv:2310.07579 , year=
-
[151]
2021 IEEE Symposium on Security and Privacy (SP) , pages=
Machine unlearning , author=. 2021 IEEE Symposium on Security and Privacy (SP) , pages=. 2021 , organization=
2021
-
[152]
Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=
Towards More Realistic Membership Inference Attacks on Large Diffusion Models , author=. Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=
-
[153]
32nd USENIX Security Symposium (USENIX Security 23) , pages=
Extracting training data from diffusion models , author=. 32nd USENIX Security Symposium (USENIX Security 23) , pages=
-
[154]
The right to be forgotten , author=. Stan. L. Rev. Online , volume=. 2011 , publisher=
2011
-
[155]
Journal of AI , volume=
Education in the era of generative artificial intelligence (AI): Understanding the potential benefits of ChatGPT in promoting teaching and learning , author=. Journal of AI , volume=. 2023 , publisher=
2023
-
[156]
NeurIPS ML Safety Workshop , year=
Hidden poison: Machine unlearning enables camouflaged poisoning attacks , author=. NeurIPS ML Safety Workshop , year=
-
[157]
Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
Unlearn What You Want to Forget: Efficient Unlearning for LLMs , author=. Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
2023
-
[158]
IEEE Transactions on Neural Networks and Learning Systems , year=
Fast yet effective machine unlearning , author=. IEEE Transactions on Neural Networks and Learning Systems , year=
-
[159]
arXiv preprint arXiv:2210.01504 , year=
Knowledge unlearning for mitigating privacy risks in language models , author=. arXiv preprint arXiv:2210.01504 , year=
-
[160]
arXiv preprint arXiv:2310.02238 , year=
Who's Harry Potter? Approximate Unlearning in LLMs , author=. arXiv preprint arXiv:2310.02238 , year=
-
[161]
arXiv preprint arXiv:2311.15766 , year=
Knowledge Unlearning for LLMs: Tasks, Methods, and Challenges , author=. arXiv preprint arXiv:2311.15766 , year=
-
[162]
arXiv preprint arXiv:2212.04089 , year=
Editing models with task arithmetic , author=. arXiv preprint arXiv:2212.04089 , year=
-
[163]
Journal of King Saud University-Computer and Information Sciences , volume=
The survey: Text generation models in deep learning , author=. Journal of King Saud University-Computer and Information Sciences , volume=. 2022 , publisher=
2022
-
[164]
Proceedings of the 2023 IEEE International Conference on Computer Vision , year=
Erasing Concepts from Diffusion Models , author=. Proceedings of the 2023 IEEE International Conference on Computer Vision , year=
2023
-
[165]
arXiv preprint arXiv:2401.05779 , year=
EraseDiff: Erasing Data Influence in Diffusion Models , author=. arXiv preprint arXiv:2401.05779 , year=
-
[166]
arXiv preprint arXiv:2310.12508 , year=
Salun: Empowering machine unlearning via gradient-based weight saliency in both image classification and generation , author=. arXiv preprint arXiv:2310.12508 , year=
-
[167]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , month =
Lin, Shen and Zhang, Xiaoyu and Chen, Chenyang and Chen, Xiaofeng and Susilo, Willy , title =. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , month =. 2023 , pages =
2023
-
[168]
arXiv preprint arXiv:2308.07061 , year=
Machine unlearning: Solutions and challenges , author=. arXiv preprint arXiv:2308.07061 , year=
-
[169]
arXiv preprint arXiv:2112.10741 , year=
Glide: Towards photorealistic image generation and editing with text-guided diffusion models , author=. arXiv preprint arXiv:2112.10741 , year=
-
[170]
Mishkin, Pamela and Ahmad, Lama and Brundage, Miles and Krueger, Gretchen and Sastry, Girish , journal=. DALL
-
[171]
arXiv preprint arXiv:2305.10120 , year=
Selective Amnesia: A Continual Learning Approach to Forgetting in Deep Generative Models , author=. arXiv preprint arXiv:2305.10120 , year=
-
[172]
arXiv preprint arXiv:2311.12047 , year=
Multimodal Machine Unlearning , author=. arXiv preprint arXiv:2311.12047 , year=
-
[173]
Advanced Robotics , volume=
A survey of multimodal deep generative models , author=. Advanced Robotics , volume=. 2022 , publisher=
2022
-
[174]
arXiv preprint arXiv:2308.08747 , year=
An empirical study of catastrophic forgetting in large language models during continual fine-tuning , author=. arXiv preprint arXiv:2308.08747 , year=
-
[175]
arXiv preprint arXiv:2309.10313 , year=
Investigating the catastrophic forgetting in multimodal large language models , author=. arXiv preprint arXiv:2309.10313 , year=
-
[176]
arXiv preprint arXiv:2311.15268 , year=
Unlearning via Sparse Representations , author=. arXiv preprint arXiv:2311.15268 , year=
-
[177]
Unlearn What You Want to Forget: Efficient Unlearning for LLM s
Chen, Jiaao and Yang, Diyi. Unlearn What You Want to Forget: Efficient Unlearning for LLM s. Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing. 2023. doi:10.18653/v1/2023.emnlp-main.738
2023 doi
-
[178]
arXiv preprint arXiv:2305.06535 , year=
KGA: A General Machine Unlearning Framework Based on Knowledge Gap Alignment , author=. arXiv preprint arXiv:2305.06535 , year=
-
[179]
arXiv preprint arXiv:2204.06031 , year=
A review on language models as knowledge bases , author=. arXiv preprint arXiv:2204.06031 , year=
-
[180]
arXiv preprint arXiv:2309.05922 , year=
A survey of hallucination in large foundation models , author=. arXiv preprint arXiv:2309.05922 , year=
-
[181]
arXiv preprint arXiv:2401.06121 , year=
TOFU: A Task of Fictitious Unlearning for LLMs , author=. arXiv preprint arXiv:2401.06121 , year=
-
[182]
The Twelfth International Conference on Learning Representations , year=
Machine Unlearning for Image-to-Image Generative Models , author=. The Twelfth International Conference on Learning Representations , year=
-
[183]
arXiv preprint arXiv:2303.05699 , year=
Feature unlearning for generative models via implicit feedback , author=. arXiv preprint arXiv:2303.05699 , year=
-
[184]
arXiv preprint arXiv:2302.09880 , year=
Towards Unbounded Machine Unlearning , author=. arXiv preprint arXiv:2302.09880 , year=
-
[185]
arXiv preprint arXiv:2402.08787 , year=
Rethinking machine unlearning for large language models , author=. arXiv preprint arXiv:2402.08787 , year=
-
[186]
ACM Computing Surveys , volume=
Machine unlearning: A survey , author=. ACM Computing Surveys , volume=. 2023 , publisher=
2023
-
[187]
arXiv preprint arXiv:2304.08345 , year=
Valor: Vision-audio-language omni-perception pretraining model and dataset , author=. arXiv preprint arXiv:2304.08345 , year=
-
[188]
arXiv preprint arXiv:2104.08718 , year=
Clipscore: A reference-free evaluation metric for image captioning , author=. arXiv preprint arXiv:2104.08718 , year=
-
[189]
2022 IEEE Symposium on Security and Privacy (SP) , pages=
Membership inference attacks from first principles , author=. 2022 IEEE Symposium on Security and Privacy (SP) , pages=. 2022 , organization=
2022
-
[190]
arXiv preprint arXiv:2302.03262 , year=
Membership inference attacks against diffusion models , author=. arXiv preprint arXiv:2302.03262 , year=
-
[191]
arXiv preprint arXiv:2210.00968 , year=
Membership inference attacks against text-to-image generation models , author=. arXiv preprint arXiv:2210.00968 , year=
-
[192]
arXiv preprint arXiv:2309.17410 , year=
Can sensitive information be deleted from llms? objectives for defending against extraction attacks , author=. arXiv preprint arXiv:2309.17410 , year=
-
[193]
International Conference on Machine Learning , pages=
Understanding instance-level impact of fairness constraints , author=. International Conference on Machine Learning , pages=. 2022 , organization=
2022
-
[194]
Canadian privacy law: The personal information protection and electronic documents act (PIPEDA) , author=. Int'l. In-House Counsel J. , volume=. 2008 , publisher=
2008
-
[195]
arXiv preprint arXiv:2301.09753 , year=
Towards Modular Machine Learning Solution Development: Benefits and Trade-offs , author=. arXiv preprint arXiv:2301.09753 , year=
-
[196]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Quarantine: Sparsity can uncover the trojan attack trigger for free , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[197]
Advances in neural information processing systems , volume=
Sanity checks for saliency maps , author=. Advances in neural information processing systems , volume=
-
[198]
arXiv preprint arXiv:1706.03825 , year=
Smoothgrad: removing noise by adding noise , author=. arXiv preprint arXiv:1706.03825 , year=
-
[199]
International Conference on Machine Learning , pages=
Leveraging sparse linear layers for debuggable deep networks , author=. International Conference on Machine Learning , pages=. 2021 , organization=
2021
-
[200]
Advances in Neural Information Processing Systems , volume=
Prompt certified machine unlearning with randomized gradient smoothing and quantization , author=. Advances in Neural Information Processing Systems , volume=
-
[201]
European conference on computer vision , pages=
Visualizing and understanding convolutional networks , author=. European conference on computer vision , pages=. 2014 , organization=
2014
-
[202]
arXiv preprint arXiv:1412.6806 , year=
Striving for simplicity: The all convolutional net , author=. arXiv preprint arXiv:1412.6806 , year=
-
[203]
arXiv preprint arXiv:1312.6034 , year=
Deep inside convolutional networks: Visualising image classification models and saliency maps , author=. arXiv preprint arXiv:1312.6034 , year=
-
[204]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Diffusion art or digital forgery? investigating data replication in diffusion models , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[205]
Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages=
Learning deep features for discriminative localization , author=. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages=
-
[206]
arXiv preprint arXiv:1806.07421 , year=
RISE: Randomized Input Sampling for Explanation of Black-box Models , author=. arXiv preprint arXiv:1806.07421 , year=
-
[207]
arXiv preprint arXiv:2308.03296 , year=
Studying Large Language Model Generalization with Influence Functions , author=. arXiv preprint arXiv:2308.03296 , year=
-
[208]
arXiv preprint arXiv:2302.03169 , year=
Data selection for language models via importance resampling , author=. arXiv preprint arXiv:2302.03169 , year=
-
[209]
Advances in Neural Information Processing Systems , volume=
How can i explain this to you? an empirical study of deep neural network explanation methods , author=. Advances in Neural Information Processing Systems , volume=
-
[210]
arXiv preprint arXiv:2202.00622 , year=
Datamodels: Predicting predictions from training data , author=. arXiv preprint arXiv:2202.00622 , year=
-
[211]
Chattopadhay, Aditya and Sarkar, Anirban and Howlader, Prantik and Balasubramanian, Vineeth N , booktitle=. Grad-. 2018 , organization=
2018
-
[212]
arXiv preprint arXiv:2303.14186 , year=
Trak: Attributing model behavior at scale , author=. arXiv preprint arXiv:2303.14186 , year=
-
[213]
Selvaraju, Ramprasaath R and Cogswell, Michael and Das, Abhishek and Vedantam, Ramakrishna and Parikh, Devi and Batra, Dhruv , booktitle=. Grad-
-
[214]
Proceedings of the 34th International Conference on Machine Learning-Volume 70 , pages=
Axiomatic attribution for deep networks , author=. Proceedings of the 34th International Conference on Machine Learning-Volume 70 , pages=. 2017 , organization=
2017
-
[215]
2022 IEEE International Conference on Knowledge Graph (ICKG) , pages=
Certified Data Removal in Sum-Product Networks , author=. 2022 IEEE International Conference on Knowledge Graph (ICKG) , pages=. 2022 , organization=
2022
-
[216]
IEEE Network , volume=
Federated unlearning: Guarantee the right of clients to forget , author=. IEEE Network , volume=. 2022 , publisher=
2022
-
[217]
arXiv preprint arXiv:2307.14754 , year=
Fair Machine Unlearning: Data Removal while Mitigating Disparities , author=. arXiv preprint arXiv:2307.14754 , year=
-
[218]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
A Data-Based Perspective on Transfer Learning , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[219]
Advances in Neural Information Processing Systems , volume=
Scaling vision with sparse mixture of experts , author=. Advances in Neural Information Processing Systems , volume=
-
[220]
International conference on machine learning , pages=
Understanding black-box predictions via influence functions , author=. International conference on machine learning , pages=. 2017 , organization=
2017
-
[221]
IEEE Transactions on Pattern Analysis and Machine Intelligence , year=
Dataset security for machine learning: Data poisoning, backdoor attacks, and defenses , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , year=
-
[222]
International Conference on Artificial Intelligence and Statistics , pages=
Approximate data deletion from machine learning models , author=. International Conference on Artificial Intelligence and Statistics , pages=. 2021 , organization=
2021
-
[223]
Neural Networks , volume=
Continual lifelong learning with neural networks: A review , author=. Neural Networks , volume=. 2019 , publisher=
2019
-
[224]
1982 , publisher=
Residuals and influence in regression , author=. 1982 , publisher=
1982
-
[225]
Foundations and Trends
Optimization with sparsity-inducing penalties , author=. Foundations and Trends. 2012 , publisher=
2012
-
[226]
Advances in Neural Information Processing Systems , year=
Fair Infinitesimal Jackknife: Mitigating the Influence of Biased Training Data Points Without Refitting , author=. Advances in Neural Information Processing Systems , year=
-
[227]
arXiv preprint arXiv:2207.05739 , year=
A data-based perspective on transfer learning , author=. arXiv preprint arXiv:2207.05739 , year=
-
[228]
arXiv preprint arXiv:2201.06640 , year=
Towards adversarial evaluations for inexact machine unlearning , author=. arXiv preprint arXiv:2201.06640 , year=
-
[229]
European Conference on Computer Vision , pages=
Practical detection of trojan neural networks: Data-limited and data-free cases , author=. European Conference on Computer Vision , pages=. 2020 , organization=
2020
-
[230]
Advances in Neural Information Processing Systems , volume=
A winning hand: Compressing deep networks can improve out-of-distribution robustness , author=. Advances in Neural Information Processing Systems , volume=
-
[231]
arXiv preprint arXiv:1911.05248 , year=
What do compressed deep neural networks forget? , author=. arXiv preprint arXiv:1911.05248 , year=
1911 arXiv
-
[232]
arXiv preprint arXiv:2305.06360 , year=
Exploring the Landscape of Machine Unlearning: A Survey and Taxonomy , author=. arXiv preprint arXiv:2305.06360 , year=
-
[233]
arXiv preprint arXiv:2008.13578 , year=
Against membership inference attack: Pruning is all you need , author=. arXiv preprint arXiv:2008.13578 , year=
2008 arXiv
-
[234]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Scalable differential privacy with sparse network finetuning , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[235]
Proceedings of the 2019 ACM SIGSAC Conference on Computer and Communications Security , pages=
Privacy risks of securing machine learning models against adversarial examples , author=. Proceedings of the 2019 ACM SIGSAC Conference on Computer and Communications Security , pages=
2019
-
[236]
2018 IEEE 31st computer security foundations symposium (CSF) , pages=
Privacy risk in machine learning: Analyzing the connection to overfitting , author=. 2018 IEEE 31st computer security foundations symposium (CSF) , pages=. 2018 , organization=
2018
-
[237]
arXiv preprint arXiv:2003.10595 , year=
Systematic evaluation of privacy risks of machine learning models , author=. arXiv preprint arXiv:2003.10595 , year=
2003 arXiv
-
[238]
Proceedings of the AAAI Conference on Artificial Intelligence , pages=
Puma: Performance unchanged model augmentation for training data removal , author=. Proceedings of the AAAI Conference on Artificial Intelligence , pages=
-
[239]
arXiv preprint arXiv:2111.11869 , year=
Machine unlearning via GAN , author=. arXiv preprint arXiv:2111.11869 , year=
-
[240]
arXiv preprint arXiv:2302.13406 , year=
GNNDelete: A General Strategy for Unlearning in Graph Neural Networks , author=. arXiv preprint arXiv:2302.13406 , year=
-
[241]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Deep unlearning via randomized conditionally independent hessians , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[242]
arXiv preprint arXiv:2003.10933 , year=
Learn to forget: Machine unlearning via neuron masking , author=. arXiv preprint arXiv:2003.10933 , year=
2003 arXiv
-
[243]
Information , volume=
Fastai: A layered API for deep learning , author=. Information , volume=. 2020 , publisher=
2020
-
[244]
Nudenet: Neural nets for nudity classification, detection and selective censoring , author=
-
[245]
Advances in Neural Information Processing Systems , volume=
Laion-5b: An open large-scale dataset for training next generation image-text models , author=. Advances in Neural Information Processing Systems , volume=
-
[246]
arXiv preprint arXiv:2111.02114 , year=
Laion-400m: Open dataset of clip-filtered 400 million image-text pairs , author=. arXiv preprint arXiv:2111.02114 , year=
-
[247]
arXiv preprint arXiv:2110.01963 , year=
Multimodal datasets: misogyny, pornography, and malignant stereotypes , author=. arXiv preprint arXiv:2110.01963 , year=
-
[248]
arXiv preprint arXiv:2210.04610 , year=
Red-teaming the stable diffusion safety filter , author=. arXiv preprint arXiv:2210.04610 , year=
-
[249]
arXiv preprint arXiv:2104.08696 , year=
Knowledge neurons in pretrained transformers , author=. arXiv preprint arXiv:2104.08696 , year=
-
[250]
Advances in Neural Information Processing Systems , volume=
Locating and editing factual associations in GPT , author=. Advances in Neural Information Processing Systems , volume=
-
[251]
arXiv preprint arXiv:2104.08164 , year=
Editing factual knowledge in language models , author=. arXiv preprint arXiv:2104.08164 , year=
-
[252]
arXiv preprint arXiv:2208.01618 , year=
An image is worth one word: Personalizing text-to-image generation using textual inversion , author=. arXiv preprint arXiv:2208.01618 , year=
-
[253]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Multi-concept customization of text-to-image diffusion , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[254]
arXiv preprint arXiv:2210.07229 , year=
Mass-editing memory in a transformer , author=. arXiv preprint arXiv:2210.07229 , year=
-
[255]
arXiv preprint arXiv:2306.00738 , year=
ReFACT: Updating Text-to-Image Models by Editing the Text Encoder , author=. arXiv preprint arXiv:2306.00738 , year=
-
[256]
arXiv preprint arXiv:2303.08084 , year=
Editing implicit assumptions in text-to-image diffusion models , author=. arXiv preprint arXiv:2303.08084 , year=
-
[257]
2023 , eprint=
Gradient Surgery for One-shot Unlearning on Generative Model , author=. 2023 , eprint=
2023
-
[258]
for now , author=
To generate or not? safety-driven unlearned diffusion models are still easy to generate unsafe images... for now , author=. arXiv preprint arXiv:2310.11868 , year=
-
[259]
arXiv preprint arXiv:1708.06733 , year=
Badnets: Identifying vulnerabilities in the machine learning model supply chain , author=. arXiv preprint arXiv:1708.06733 , year=
-
[260]
CS 231N , volume=
Tiny imagenet visual recognition challenge , author=. CS 231N , volume=
-
[261]
Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
Deep residual learning for image recognition , author=. Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
-
[262]
arXiv preprint arXiv:1409.1556 , year=
Very deep convolutional networks for large-scale image recognition , author=. arXiv preprint arXiv:1409.1556 , year=
-
[263]
Advances in neural information processing systems , volume=
Visualizing the loss landscape of neural nets , author=. Advances in neural information processing systems , volume=
-
[264]
FFCV: Accelerating Training by Removing Data Bottlenecks , author=
-
[265]
Proceedings of the IEEE international conference on computer vision , pages=
Revisiting unreasonable effectiveness of data in deep learning era , author=. Proceedings of the IEEE international conference on computer vision , pages=
-
[266]
arXiv preprint arXiv:2206.14486 , year=
Beyond neural scaling laws: beating power law scaling via data pruning , author=. arXiv preprint arXiv:2206.14486 , year=
-
[267]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
The lottery tickets hypothesis for supervised and self-supervised pre-training in computer vision models , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[268]
arXiv preprint arXiv:2108.07258 , year=
On the opportunities and risks of foundation models , author=. arXiv preprint arXiv:2108.07258 , year=
-
[269]
Advances in Neural Information Processing Systems , year=
Advancing Model Pruning via Bi-level Optimization , author=. Advances in Neural Information Processing Systems , year=
-
[270]
arXiv preprint arXiv:2207.09639 , year=
DC-BENCH: Dataset Condensation Benchmark , author=. arXiv preprint arXiv:2207.09639 , year=
-
[271]
arXiv preprint arXiv:2009.08576 , year=
Pruning neural networks at initialization: Why are we missing the mark? , author=. arXiv preprint arXiv:2009.08576 , year=
2009 arXiv
-
[272]
Advances in Neural Information Processing Systems , volume=
Pruning neural networks without any data by iteratively conserving synaptic flow , author=. Advances in Neural Information Processing Systems , volume=
-
[273]
arXiv preprint arXiv:2205.09329 , year=
Dataset Pruning: Reducing Training Data by Examining Generalization Influence , author=. arXiv preprint arXiv:2205.09329 , year=
-
[274]
Transactions of Machine Learning Research , year=
Can You Win Everything with A Lottery Ticket? , author=. Transactions of Machine Learning Research , year=
-
[275]
arXiv preprint arXiv:2002.07376 , year=
Picking winning tickets before training by preserving gradient flow , author=. arXiv preprint arXiv:2002.07376 , year=
2002 arXiv
-
[276]
arXiv preprint arXiv:2108.03506 , year=
Membership Inference Attacks on Lottery Ticket Networks , author=. arXiv preprint arXiv:2108.03506 , year=
-
[277]
Proceedings of the 2020 on Great Lakes Symposium on VLSI , pages=
A privacy-preserving-oriented dnn pruning and mobile acceleration framework , author=. Proceedings of the 2020 on Great Lakes Symposium on VLSI , pages=
2020
-
[278]
arXiv preprint arXiv:2202.03335 , year=
Membership Inference Attacks and Defenses in Neural Network Pruning , author=. arXiv preprint arXiv:2202.03335 , year=
-
[279]
Advances in Neural Information Processing Systems , volume=
Woodfisher: Efficient second-order approximation for neural network compression , author=. Advances in Neural Information Processing Systems , volume=
-
[280]
European Conference on Computer Vision , pages=
Learning with recoverable forgetting , author=. European Conference on Computer Vision , pages=. 2022 , organization=
2022
-
[281]
arXiv preprint arXiv:2003.01876 , year=
Privacy-preserving learning via deep net pruning , author=. arXiv preprint arXiv:2003.01876 , year=
2003 arXiv
-
[282]
arXiv preprint arXiv:2201.01709 , year=
The effect of model compression on fairness in facial expression recognition , author=. arXiv preprint arXiv:2201.01709 , year=
-
[283]
arXiv preprint arXiv:2201.08542 , year=
Can model compression improve nlp fairness , author=. arXiv preprint arXiv:2201.08542 , year=
-
[284]
Advances in Neural Information Processing Systems , volume=
Hydra: Pruning adversarially robust neural networks , author=. Advances in Neural Information Processing Systems , volume=
-
[285]
Proceedings of machine learning and systems , volume=
What is the state of neural network pruning? , author=. Proceedings of machine learning and systems , volume=
-
[286]
European Conference on Computer Vision , pages=
An image enhancing pattern-based sparsity for real-time inference on mobile devices , author=. European Conference on Computer Vision , pages=. 2020 , organization=
2020
-
[287]
The lottery ticket hypothesis for pre-trained
Chen, Tianlong and Frankle, Jonathan and Chang, Shiyu and Liu, Sijia and Zhang, Yang and Wang, Zhangyang and Carbin, Michael , journal=. The lottery ticket hypothesis for pre-trained
-
[288]
arXiv preprint arXiv:2106.00526 , year=
A Compression-Compilation Framework for On-mobile Real-time BERT Applications , author=. arXiv preprint arXiv:2106.00526 , year=
-
[289]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
RT3D: Achieving Real-Time Execution of 3D Convolutional Neural Networks on Mobile Devices , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[290]
model compression, or both? , author=
Adversarial robustness vs. model compression, or both? , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=
-
[291]
IEEE Circuits and Systems Magazine , volume=
A memristor-based optimization framework for artificial intelligence applications , author=. IEEE Circuits and Systems Magazine , volume=. 2018 , publisher=
2018
-
[292]
Brief Industry Paper: Towards Real-Time 3D Object Detection for Autonomous Vehicles with Pruning Search , year=
Zhao, Pu and Niu, Wei and Yuan, Geng and Cai, Yuxuan and Sung, Hsin-Hsuan and Liu, Shaoshan and Liu, Sijia and Shen, Xipeng and Ren, Bin and Wang, Yanzhi and Lin, Xue , booktitle=. Brief Industry Paper: Towards Real-Time 3D Object Detection for Autonomous Vehicles with Pruning...
-
[293]
arXiv preprint arXiv:2012.13801 , year=
Achieving Real-Time LiDAR 3D Object Detection on a Mobile Device , author=. arXiv preprint arXiv:2012.13801 , year=
2012 arXiv
-
[294]
Proceedings of the IEEE international conference on computer vision , pages=
Channel pruning for accelerating very deep neural networks , author=. Proceedings of the IEEE international conference on computer vision , pages=
-
[295]
Machine Intelligence and Pattern Recognition , pages=
On polygonal chain approximation , author=. Machine Intelligence and Pattern Recognition , pages=
-
[296]
Advances in Neural Information Processing Systems , volume=
Sanity checks for lottery tickets: Does your winning ticket really win the jackpot? , author=. Advances in Neural Information Processing Systems , volume=
-
[297]
A novel generalization of B
Han, Xi-An and Ma, YiChen and Huang, XiLi , journal=. A novel generalization of B. 2008 , publisher=
2008
-
[298]
International Conference on Machine Learning , pages=
Linear mode connectivity and the lottery ticket hypothesis , author=. International Conference on Machine Learning , pages=. 2020 , organization=
2020
-
[299]
AAAI , pages=
An ADMM Based Framework for AutoML Pipeline Configuration , author=. AAAI , pages=
-
[300]
arXiv preprint arXiv:1810.05270 , year=
Rethinking the value of network pruning , author=. arXiv preprint arXiv:1810.05270 , year=
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.