# Adversarial Subspace Residual Localizer

- ID: 3137
- Canonical URL: https://synthcore.org/idea/3137/adversarial-subspace-residual-localizer
- API JSON: https://synthcore.org/api/idea/3137.json
- API Markdown: https://synthcore.org/api/idea/3137.md
- Verification status: unverified
- Source: [arXiv:2609.03264](https://arxiv.org/abs/2609.03264)
- Category: architecture
- Solves: stability, accuracy, sample-efficiency
- ML areas: embedding, graph-nn, training
- Math tags: linear-algebra, spectral-theory, geometry, harmonic-analysis
- Ratings: usefulness 7/10; difficulty 5/10; novelty 7/10

## Idea description

Replace a fragile learned similarity score for continuous object coordinates with a projection residual against a learned signal subspace. Candidate coordinates are represented by normalized Fourier or positional feature vectors, and the score is the fraction of feature energy outside the estimated subspace. The score remains useful even when the estimated subspace is adversarially rotated, because the perturbation is controlled directly by a sine-theta distance rather than by assumptions about random noise.

## Mathematical statement

The paper defines the spherical MUSIC objective \(\widetilde q(\bm z)=1-\|P_{\widetilde{\mathcal U}}\varphi_{\bm z}\|_2^2\), where \(\varphi_{\bm z}\) is the normalized steering or feature vector for coordinate \(\bm z\), \(\mathcal U\) is the ideal \(s\)-dimensional signal subspace, \(\widetilde{\mathcal U}\) is its estimated version, and \(P_{\widetilde{\mathcal U}}\) is the orthogonal projector onto the estimate. The perturbation size is measured by the sine-theta distance, operationalized as \(\|P_{\widetilde{\mathcal U}}-P_{\mathcal U}\|_2\leq\varepsilon_{\rm sub}\). Since \(\|\varphi_{\bm z}\|_2=1\), the score perturbation obeys \(|\widetilde q(\bm z)-q(\bm z)|\leq\varepsilon_{\rm sub}\), where \(q(\bm z)=1-\|P_{\mathcal U}\varphi_{\bm z}\|_2^2\). The paper proves that, under separation and frame-conditioning hypotheses, the perturbed objective has one strongly convex well near each true point and a uniform value gap outside those wells.

## Key formulas

- $$\widetilde q(\bm z)=1-\|P_{\widetilde{\mathcal U}}\varphi_{\bm z}\|_2^2,$$
- $$\|P_{\widetilde{\mathcal U}}-P_{\mathcal U}\|_2\leq\varepsilon_{\rm sub},\qquad |\widetilde q(\bm z)-q(\bm z)|\leq\varepsilon_{\rm sub},$$
- $$\varphi_{\bm z}(\bm\omega)=e^{\mathrm i\kappa\bm\omega\cdot\bm z},\qquad u_m^\infty(\bm\omega)=\sum_{j=1}^{s}\alpha_j^{(m)}e^{\mathrm i\kappa\bm\omega\cdot\bm x_j}.$$
- $$\kappa\delta_X\gtrsim s^{2/3},$$

## Implementation notes

Integrate this as a continuous-coordinate localization head on top of a neural encoder. Let the encoder map an input into a matrix \(Y\in\mathbb C^{M\times B}\), where \(M\) is the number of sampled spatial or angular channels and \(B\) is the number of examples or views. Compute the rank-\(s\) left singular vectors \(U_s\) of \(Y\), optionally stopping gradients through the SVD during the first experiment, and define \(P=U_sU_s^*\). Use a coordinate feature map with entries \(\varphi_z[m]=\exp(i\kappa\omega_m^\top z)/\sqrt M\), or replace it by a learned normalized Fourier-feature map. For every candidate coordinate, compute \(q(z)=1-\|U_s^*\varphi_z\|_2^2\). Train the encoder with a ranking loss forcing ground-truth coordinates to have lower \(q\) than negatives, and add augmentation that randomly rotates the estimated subspace. In pseudocode: `Y=encoder(x); U=top_s_svd(Y); phi=exp(1j*kappa*Omega@z)/sqrt(M); q=1-squared_norm(U.conj().T@phi); loss=hinge(q(z_pos)+margin-q(z_neg))`. Estimate subspace uncertainty from two independently augmented batches using \(\|UU^*-VV^*\|_2\), approximated by power iteration; the paper supplies the projector-residual construction and perturbation interpretation, while the margin and rank are hyperparameters. Start with a small synthetic 2D or 3D point-source dataset, a four-layer MLP encoder, and 64 Fourier channels. Compare against cosine similarity and an attention coordinate head under feature corruption and adversarial subspace rotation. Success means lower localization error and graceful degradation proportional to the measured projector distance at equal encoder size.

## Disclaimer

AI-generated research hypothesis, automatically tested. Not peer-reviewed.
