Papers
Topics
Authors
Recent
Search
2000 character limit reached

AdamO: Decoupled, Geometry-Aware Optimizers

Updated 5 July 2026
  • AdamO is a label for multiple distinct Adam-derived optimizers that decouple conventional adaptive updates from specialized geometry, norm control, or regularization mechanisms.
  • Variants include decoupled orthogonal dynamics for vision/language tasks, isometry-promoting updates for continual learning, and collapse suppression for offline RL, each with unique mathematical designs and objectives.
  • Empirical results show that AdamO methods can achieve higher accuracies, more robust convergence, and improved stability compared to standard AdamW across various benchmarks.

AdamO is a non-canonical name used in recent machine-learning literature for several distinct Adam-derived optimization methods rather than for a single standardized algorithm. The shared motif is not a fixed update rule but a design pattern: each method preserves an Adam-style adaptive component while decoupling an additional control mechanism that is intended to regulate geometry, norms, or regularization more explicitly than AdamW. In 2026, the name was used for Decoupled Orthogonal Dynamics in general deep learning, for an isometry-promoting optimizer in continual learning, and for a collapse-suppressed optimizer for offline reinforcement learning (Chen et al., 4 Feb 2026, Rosseau et al., 8 Jun 2026, Qiao et al., 3 May 2026).

1. Terminological scope and principal variants

The term has acquired multiple meanings in a short period. The variants differ in objective, mathematical construction, and empirical target regime.

Variant Core decoupling mechanism Application regime
AdamO as Decoupled Orthogonal Dynamics Radial norm control separated from tangential Adam preconditioning Vision and language tasks
AdamO for continual learning Isometry-promoting regularization decoupled from Adam updates Supervised and RL continual learning
AdamO for offline RL Orthogonality correction decoupled from Adam moments with a task-alignment budget Offline critic optimization

This multiplicity is central to interpreting the name correctly. A common misconception is to treat AdamO as a single optimizer comparable to Adam, AdamW, or RMSProp. The current literature instead uses the label for several optimizer constructions that share an Adam-like backbone but target different failure modes: radial oscillation and norm control, plasticity loss via dynamical-isometry degradation, or temporal-difference instability and critic collapse.

2. Decoupled Orthogonal Dynamics

In "Decoupled Orthogonal Dynamics: Regularization for Deep Network Optimizers" (Chen et al., 4 Feb 2026), AdamO is defined by an explicit orthogonal decomposition of each parameter-block update into a radial component, which changes the parameter norm, and a tangential component, which changes direction while remaining orthogonal to the parameter vector. For a parameter block ww, the projections are

φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).

The gradient is decomposed as gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta, with gtρwg_t^\rho \parallel w and gtθwg_t^\theta \perp w. AdamO assigns norm control to an SGD-style radial channel with curvature-adaptive step size and purely radial weight decay,

wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,

while confining Adam-style adaptive preconditioning to the tangential subspace,

Δwtθ=ηθφwθ ⁣(m^tθv^tθ+ϵ).\Delta w_t^\theta = \eta_\theta\,\varphi_w^\theta\!\left(\frac{\hat m_t^\theta}{\sqrt{\hat v_t^\theta}+\epsilon}\right).

The radial step size is itself curvature-adaptive through

κt:=gtgt12,τt:=βττt1+(1βτ)κt,\kappa_t := \|g_t - g_{t-1}\|^2,\qquad \tau_t := \beta_\tau \tau_{t-1} + (1 - \beta_\tau)\,\kappa_t,

and

ηρ,t:=ηρτt/τtarget+ϵ.\eta_{\rho,t} := \frac{\eta_{\rho}}{\sqrt{\tau_t/\tau_{\text{target}} + \epsilon}}.

The motivation is the "Radial Tug-of-War" attributed to AdamW: task gradients tend to increase parameter norms, whereas weight decay suppresses norm growth, and the resulting radial oscillations enter Adam’s second-moment estimate vtv_t, thereby polluting adaptive scaling for tangential feature learning. AdamO attempts to remove that interference by separating magnitude and direction dynamics. The method also includes architecture-aware rules: low-dimensional parameters use a simplified Adam update, and scale-invariant layers receive tangential updates only.

Empirically, the paper reports substantial gains on CIFAR-100 with ResNet-18, where test accuracy is φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).0 for AdamW and φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).1 for full AdamO. Ablations indicate that AdamO-Isotropic is φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).2, essentially indistinguishable from AdamW, and that removing curvature adaptation reduces performance to φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).3. On modular-arithmetic grokking, AdamO reaches φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).4 test accuracy, compared with φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).5 for AdamW and φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).6 for Adam; the first epoch with test accuracy φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).7 is 2785 for AdamO and 2508 for AdamW. The paper also reports that AdamO has a broader high-accuracy region in 2D grid searches over φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).8 than AdamW has over learning rate and weight decay, which it interprets as greater hyperparameter robustness.

3. Dynamical-isometry AdamO for continual learning

In "Preserving Plasticity in Continual Learning via Dynamical Isometry" (Rosseau et al., 8 Jun 2026), AdamO is a different optimizer whose purpose is to preserve plasticity under non-stationarity. The paper defines plasticity through the reduction of excess achievable loss and relates local progress under first-order methods to the empirical Neural Tangent Kernel,

φwρ(z):=z,ww,ww,φwθ(z):=zφwρ(z).\varphi^{\rho}_{w}(z) :=\frac{\langle z,w\rangle}{\langle w,w\rangle}\,w, \qquad \varphi^{\theta}_{w}(z) :=z-\varphi^{\rho}_{w}(z).9

with first-order loss change governed by

gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta0

Within that framework, task-agnostic plasticity is associated with keeping the NTK spectrum well conditioned, and dynamical isometry—layer-wise Jacobian singular values remaining close to one—is proposed as a practical surrogate.

The method regularizes each weight matrix toward orthogonality or pseudo-orthogonality with

gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta1

and then decouples the corresponding gradient from Adam’s moment estimates. If gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta2 is the task gradient and gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta3 is the gradient of the summed isometry penalty, AdamO updates parameters by

gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta4

This is explicitly presented as analogous to AdamW: Adam’s adaptive statistics are built only from the task loss, while the isometry-promoting step acts separately.

A distinctive claim of this work is that the regularizer can reactivate dormant ReLU units because it acts directly on weight matrices even when task gradients vanish for dead units. The paper evaluates the method on random-label memorization, pixel-permutation, label-shuffling, continual PPO on MinAtar, and continual Octax. Across these supervised and reinforcement-learning benchmarks, the proposed methods "consistently match or outperform existing approaches." Diagnostics are reported to show tighter weight spectra and higher effective rank, better-conditioned empirical NTKs, Jacobian singular values concentrated near 1, and fewer dormant neurons. For practical use, the authors recommend AdamO + ReLU as the default option, and report only a few percent overhead in wall-clock time and approximately gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta5–gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta6 additional memory.

4. Collapse-suppressed AdamO for offline reinforcement learning

In "AdamO: A Collapse-Suppressed Optimizer for Offline RL" (Qiao et al., 3 May 2026), the name designates yet another optimizer, this time for suppressing critic collapse in offline temporal-difference learning. The paper models Adam-based TD learning as a feedback system and analyzes a frozen local regime in which TD errors satisfy a second-order linear recurrence. Stability is characterized exactly by the spectral radius of an augmented update operator: gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta7 with

gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta8

and exponential convergence of TD error if and only if

gt=gtρ+gtθg_t=g_t^\rho+g_t^\theta9

The induced TD dynamics operator is

gtρwg_t^\rho \parallel w0

where gtρwg_t^\rho \parallel w1 is the preconditioned Gram operator. The paper argues that Adam’s coordinate-wise preconditioning can distort parameter geometry so that the damping term gtρwg_t^\rho \parallel w2 no longer dominates the bootstrapped self-excitation term gtρwg_t^\rho \parallel w3. AdamO addresses this by adding a decoupled orthogonality correction to selected weight blocks. For a block gtρwg_t^\rho \parallel w4,

gtρwg_t^\rho \parallel w5

with orthogonality gradient gtρwg_t^\rho \parallel w6. Adam moments are computed only from the task gradient gtρwg_t^\rho \parallel w7, while the orthogonality step is scaled relative to the Adam step gtρwg_t^\rho \parallel w8 and restricted by a task-alignment budget

gtρwg_t^\rho \parallel w9

The final update is

gtθwg_t^\theta \perp w0

The method comes with explicit task-safety guarantees: for gtθwg_t^\theta \perp w1, AdamO is non-inferior to Adam at the next step under a stated smoothness-dependent condition, and for gtθwg_t^\theta \perp w2 the worst-case single-step degradation is bounded. The paper also shows that AdamO preserves Adam’s continuous-time dissipative Hamiltonian structure up to a controlled perturbation determined by gtθwg_t^\theta \perp w3.

Empirically, AdamO is reported to improve stability and normalized return across MuJoCo locomotion, AntMaze, Adroit, and FrankaKitchen, and to remain broadly compatible with TD3+BC, IQL, ReBRAC, ACTIVE, PARS, and SQOG. Average TD3+BC scores are reported as gtθwg_t^\theta \perp w4 on AntMaze, gtθwg_t^\theta \perp w5 on MuJoCo Locomotion, and gtθwg_t^\theta \perp w6 on Adroit when replacing Adam with AdamO. On pen-human, Adam is reported to collapse to approximately gtθwg_t^\theta \perp w7, whereas AdamO attains approximately gtθwg_t^\theta \perp w8. The computational overhead is described as roughly gtθwg_t^\theta \perp w9 more wall-clock time than Adam, with an example of wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,0 versus wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,1 minutes for TD3+BC over wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,2M steps.

5. Relation to Adam, AdamW, and Adam-like optimizer design

All three AdamO constructions are intelligible against the broader literature on Adam-like methods. The underlying Adam template remains the familiar first- and second-moment recursion with bias correction, while the differentiating feature is the decoupling of an auxiliary structural control from the adaptive preconditioner. In the Decoupled Orthogonal Dynamics paper, the conflict is between radial norm control and tangential feature learning; in the continual-learning paper, it is between isometry regularization and task gradients; in the offline-RL paper, it is between orthogonality correction and critic-loss descent. This suggests a recurring design pattern: AdamO methods are geometry-aware extensions of AdamW-style decoupling rather than a single optimizer family in the strict algorithmic sense (Chen et al., 4 Feb 2026, Rosseau et al., 8 Jun 2026, Qiao et al., 3 May 2026).

A broader analytical lens appears in "Beyond Adam: Disentangling Optimizer Effects in the Fine-Tuning of Atomistic Foundation Models" (Liu et al., 5 Dec 2025). That work writes first-order optimization generically as

wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,3

treats the optimizer as a data-dependent linear map applied to the gradient, and interprets wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,4 as a preconditioned Hessian that imposes a spectral filter on curvature. It then states, specifically for a hypothetical "AdamO," that one should specify the preconditioner wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,5, characterize its spectral filter, decouple curvature and regularization, test spectra- and dynamics-sensitive tasks, and possibly combine the method with a brief second-order refinement stage. A plausible implication is that this preconditioning viewpoint provides a common language for the otherwise heterogeneous AdamO proposals.

The contemporaneous theory paper "Adam Converges in Nonsmooth Nonconvex Optimization" gives a different kind of context: it proves the first finite-time guarantee for the classical form of Adam, with bias correction and without further algorithmic modifications, in nonsmooth nonconvex optimization under a randomly scaled learning rate, establishing a convergence rate of wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,6 and emphasizing the parameter choice wdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,7 (Liu, 21 Jun 2026). That result does not analyze any AdamO variant directly, but it clarifies that recent AdamO proposals are not attempts to repair an optimizer with no theoretical footing; rather, they target specific geometric or dynamical pathologies that arise beyond basic convergence questions.

6. Homographs, adjacent names, and scope delimitations

The optimizer literature is not the only source of similarly named research objects. "AdaMo" in automatic code summarization is a transfer-learning model that assembles CodeBERT and GPT-2 into a single encoder-decoder architecture, adds Gaussian noise to latent representations, and introduces continuous pretraining and intermediate finetuning schemes; it is not an optimizer, despite the near-identity of the name in some queries (Gu et al., 2022).

Likewise, "ADAMO" in astroparticle physics denotes "Anisotropic detectors for DArk Matter Observation," an R&D program centered on radiopure ZnWOwdecay=(1ηρ,tλ)w,w^{\text{decay}} = (1 - \eta_{\rho,t} \lambda)\,w,8 anisotropic scintillators for directional dark-matter detection. In that setting the term refers to detector development, quenching-factor measurements, and directional modulation concepts, not to stochastic optimization (Belli et al., 2020).

For that reason, any use of "AdamO" requires local context. Within current machine-learning usage, the term is best treated as a label for several independent Adam-derived optimizers that share a decoupling philosophy but differ substantially in mathematics, target failure modes, and empirical claims.

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 AdamO.