Papers
Topics
Authors
Recent
Search
2000 character limit reached

Joint Temporal Lipschitz-Guided Attacks

Updated 8 February 2026
  • J-TLGA is an adversarial attack that jointly perturbs the router and expert modules in video MoE systems by maximizing temporal Lipschitz constants.
  • Experimental results show that J-TLGA can reduce robust accuracy significantly (e.g., from 11.10% to 2.54% on UCF-101) by exploiting module interactions.
  • The approach motivates new defenses like Joint Temporal Lipschitz Adversarial Training (J-TLAT) to improve robustness while retaining computational efficiency.

Joint Temporal Lipschitz-Guided Attacks (J-TLGA) constitute a class of adversarial attacks designed to expose and exploit collaborative vulnerabilities inherent in video Mixture-of-Experts (MoE) architectures. Unlike conventional attacks treating MoE as unitary, J-TLGA targets both the router and the expert modules jointly via perturbations constructed to maximize their temporal Lipschitz constants, amplifying adversarial effects through their interaction. This methodology uncovers failure modes unaddressed by prior attacks, providing new insights into the adversarial robustness landscape of temporally structured MoE systems (Wang et al., 1 Feb 2026).

1. Adversarial Weaknesses in Video Mixture-of-Experts

Video MoE models decompose computation into a lightweight router R()R(\cdot) and a set of expert networks {E1,,EM}\{E_1, \dots, E_M\}, where the router selects a subset of kk experts per video clip, and the experts produce final class logits. Traditional gradient-based attacks such as Projected Gradient Descent (PGD) view MoE as a unified function FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x), seeking to maximize the cross-entropy loss under an p\ell_p-norm constraint on the perturbation δ\delta. However, such attacks overlook distinct vulnerabilities: (1) the router’s independent fragility, manifesting as “routing collapse” even for small δ\delta, and (2) collaborative weaknesses that emerge from combined router mis-steering and expert module instability. Empirically, PGD yields limited robust accuracy reductions (e.g., \sim54% clean vs. \sim11% under attack at ϵ=14/255\epsilon=14/255 on UCF-101), leaving major weaknesses undetected (Wang et al., 1 Feb 2026).

2. Temporal Lipschitz Constant and Its Role in Attack Design

For temporal data, the local Lipschitz constant {E1,,EM}\{E_1, \dots, E_M\}0 for a mapping {E1,,EM}\{E_1, \dots, E_M\}1 is estimated by

{E1,,EM}\{E_1, \dots, E_M\}2

and is extended to a temporal version to capture per-frame dynamics:

{E1,,EM}\{E_1, \dots, E_M\}3

A large {E1,,EM}\{E_1, \dots, E_M\}4 indicates that minor temporal input perturbations lead to pronounced output swings. This property is exploited as a lever for enhanced attack objectives, as temporal volatility can trigger compounded errors in both routing and expert inference in MoE.

3. Joint Attack Objective and Optimization

J-TLGA is formalized by a joint loss that perturbs {E1,,EM}\{E_1, \dots, E_M\}5 once and propagates {E1,,EM}\{E_1, \dots, E_M\}6 to both router and experts:

{E1,,EM}\{E_1, \dots, E_M\}7

where {E1,,EM}\{E_1, \dots, E_M\}8 is cross-entropy loss for MoE output and ground-truth label {E1,,EM}\{E_1, \dots, E_M\}9; kk0 is computed as the maximum temporal Lipschitz estimate over the currently activated (top-kk1) experts. The attack is designed to implicitly push the router kk2 toward the weakest expert (lowest clean prediction confidence), while simultaneously destabilizing expert outputs temporally. The use of “temporal adaptive step-sizes” in the PGD-like update is integral, with per-frame momentum and log-scaling ensuring efficient exploitation of transient vulnerabilities (Wang et al., 1 Feb 2026).

J-TLGA Pseudocode (excerpt):

FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)9 Optimal hyperparameters are kk3, kk4, kk5, kk6, kk7.

4. Empirical Results and Attack Effectiveness

Experimental evaluation on action recognition datasets (UCF-101, HMDB-51) and architectures (3D ResNet-18, TSM, SlowFast, R(2+1)D; with Top-1 MLP routers; kk8 experts, kk9 active per forward) demonstrates the severity of vulnerabilities exposed by J-TLGA. For FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)0 (FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)1), robust accuracy results on UCF-101 (3D-ResNet-18 expert) are summarized below:

Attack Robust Accuracy (%)
PGD 11.10
TLA-M 4.73
J-TLA 4.73
J-TLGA 2.54

[J-TLGA achieves the lowest robust accuracy across all tested setups and is much more effective than PGD or modular (TLA-M) baselines.]

Black-box transferability is also enhanced: under J-TLGA, 3D-ResNet models retain only 20.15% robust accuracy versus 66.04% for TT, underlining broad applicability. Ablation studies show attack potency is maximized for FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)2, with longer input clips (higher FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)3) and higher expert cardinality FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)4 yielding marginal resilience but persistent severe drops in robust accuracy.

5. Insights Into MoE Vulnerability Structure

Analysis of experimental outcomes identifies the MoE's Achilles’ Heel as the coupled fragility of router and experts under temporally structured attacks. Key findings:

  1. Router vulnerability: Targeted router attacks (TLGA-R) degrade routing consistency IoU over PGD-R by more than 20%.
  2. Expert sensitivity: Expert module perturbation (TLA-E) is 10–15% more effective than traditional attacks targeting only experts.
  3. Joint weakness: J-TLGA leverages cascading failures; minor router mis-steering, combined with expert output disruptions, causes severe misclassifications not captured by component-agnostic adversarial training.

This coordination of vulnerabilities demonstrates that defenses must address both independent and collaborative weaknesses to achieve robustness.

6. Joint Temporal Lipschitz Adversarial Training (J-TLAT)

To mitigate the weaknesses revealed by J-TLGA, Joint Temporal Lipschitz Adversarial Training (J-TLAT) is introduced. J-TLAT hierarchically defends the MoE in three stages per training epoch:

  1. Router AT:

FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)5

  1. Expert AT: (on weakest identified experts)

FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)6

  1. Full MoE AT:

FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)7

J-TLAT is “plug-and-play” and preserves the MoE’s efficiency (over 60% FLOP reduction compared to dense models). Empirically, J-TLAT increases robust accuracy under J-TLGA from 5.17% (AT-MoE) to 21.98% on UCF-101 at FMoE(x)=i=1Mwi(x)Ei(x)F_{\text{MoE}}(x) = \sum_{i=1}^M w_i(x) E_i(x)8, with further improvements under other attacks. The approach yields the lowest realized Lipschitz constants (Lips-R = 0.823, Lips-J = 2.343), confirming increased smoothness.

7. Implications and Future Directions

J-TLGA establishes that the primary source of brittleness in video MoE is the combined effect of time-coupled router and expert errors under adversarial perturbations. The methodology reveals previously hidden failure modes and motivates the need for layered, component-sensitive adversarial training. A plausible implication is that similar coupling phenomena likely affect other modular video models or time-sensitive sparse architectures. J-TLAT exemplifies a defense paradigm that leverages Lipschitz conditioning and targeted module-wise adversarial training to harden models against structured attacks while retaining computational efficiency (Wang et al., 1 Feb 2026). The extension of J-TLGA and J-TLAT concepts to other domains with modular temporal inference remains an open and promising direction for robustness research.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Joint Temporal Lipschitz-Guided Attacks (J-TLGA).