Papers
Topics
Authors
Recent
Search
2000 character limit reached

Non-Euclidean Trust Region Framework

Updated 19 February 2026
  • Non-Euclidean Trust Region (NTR) frameworks are optimization methods that substitute the Euclidean norm with alternative metrics, divergences, or manifold structures to handle complex geometries.
  • NTR employs geometry-aware model building and trust-region subproblems using metric balls, divergence constraints, or tangent space projections for effective step computation.
  • NTR ensures global convergence and practical performance by adapting step acceptance criteria and updating the trust region based on geometry-specific predictive reductions.

The Non-Euclidean Trust Region (NTR) framework generalizes classical trust-region optimization to settings where the underlying space, geometry, or modeling assumptions preclude standard Euclidean structure. NTR approaches replace the canonical Euclidean norm with more general metrics, divergences, or even metric spaces, enabling principled optimization in highly abstract, nonsmooth, or structured domains. This includes compact metric spaces (lacking vector-space operations), spaces of probability distributions under divergence metrics, matrix spaces with operator or nuclear norms, and manifolds equipped with Riemannian or weighted inner products. The NTR formalism encapsulates model-building, step computation, criticality assessment, and global convergence, with algorithmic and theoretical developments spanning smooth, nonsmooth, and even combinatorial/integer settings.

1. Foundational Principles and Problem Formulation

NTR frameworks are unified by the use of a generalized local model and trust-region subproblem, embedded in a non-Euclidean space. The abstract optimization problem is

minxXf(x)\min_{x\in X} f(x)

where XX may be a compact metric space with metric dd (Manns, 2024), a finite-dimensional vector space with arbitrary norm (Kovalev, 16 Mar 2025), a probability simplex with divergence metrics (Zhao et al., 2019), a Riemannian manifold (Mor et al., 2020), or a Hilbert space with weighted inner product (Maia et al., 13 Jan 2026).

Model construction: At iterate xkx_k, a model function mkm_k is built to approximate ff locally, using only structure that is meaningful for the given geometry. The model must align at the point (mk(xk)=f(xk)m_k(x_k)=f(x_k)) and encode locality via a geometry-induced ball or divergence.

Trust region: The generalized trust region defines permissible steps. Examples:

  • Metric ball: Bd(xk,Δk)={yX:d(xk,y)Δk}B_d(x_k, \Delta_k) = \{y\in X: d(x_k,y)\leq \Delta_k\} (Manns, 2024)
  • Norm ball: xxkηk\|x-x_k\|\leq \eta_k (Kovalev, 16 Mar 2025)
  • Distributional ball (e.g., KL or Bregman divergence): $\E_{s\sim\rho_{\pi_k}}[D(\pi(\cdot|s) \|\pi_k(\cdot|s))] \leq \delta_k$ (Zhao et al., 2019)
  • Riemannian geodesic or manifold: xx on sphere or submanifold with equality constraint (Mor et al., 2020)
  • Weighted ball: xxkWΔk\|x-x_k\|_W \leq \Delta_k with W0W\succ 0 (Maia et al., 13 Jan 2026)

Step calculation: The subproblem is solved approximately or exactly, subject to the trust region, delivering predicted reduction $\pred_k$ and actual (objective) reduction $\ared_k$. The acceptance ratio $\rho_k = \ared_k/\pred_k$ guides step acceptance and radius adjustment.

2. Trust-Region Algorithms in Non-Euclidean Geometries

The formal NTR algorithm generalizes standard trust-region update rules to the chosen geometry, maintaining the core logic of model-based local search with adaptive radius control.

Canonical steps:

  1. Build model mkm_k at xkx_k
  2. Compute a step yky_k (or increment δk\delta_k) by (approximately) minimizing mkm_k over the trust region
  3. Compute predicted and actual reductions; calculate ρk\rho_k
  4. Accept/reject the step and update the radius Δk+1\Delta_{k+1} or equivalent

Distinctive adaptations:

  • In metric spaces, no vector operations are needed; only the metric ball is required (Manns, 2024)
  • For divergences/Bregman distances, subproblems are solved in the geometry of the divergence (Zhao et al., 2019)
  • For matrix problems, spectral or nuclear norms yield explicit forms (e.g., orthogonalized updates for matrix variables) (Kovalev, 16 Mar 2025)
  • On manifolds, the subproblem is posed in the tangent space with Riemannian metric, using projections and retractions (Mor et al., 2020)
  • Weighted-proximal methods embed all terms (including proximals and Cauchy steps) in weighted norms (Maia et al., 13 Jan 2026)

General parameterization:

Key parameters—shrinkage/enlargement factors (γ1,γ2\gamma_1,\gamma_2), acceptance thresholds (η1,η2\eta_1,\eta_2), maximum radius, model inexactness, and gradient inexactness—are adapted analogously to the Euclidean case, but all calculations (steps, norms, reductions) are performed in the relevant geometry.

3. Stationarity Concepts and Theoretical Guarantees

NTR frameworks extend classical first-order stationarity to settings where gradients or subgradients may not exist or are ill-defined. The main tool is a criticality measure C(x)C(x) capturing first-order optimality in the chosen geometry:

  • In metric settings: $C(x) = \limsup_{\Delta\to 0} \frac{\pred(x,\Delta)}{\Delta}$, so C(x)=0C(x)=0 iff xx is stationary (Manns, 2024)
  • In composite-normed spaces: f(x)+r\|\nabla f(x)+r\|_* with rR(x)r\in\partial R(x) (Kovalev, 16 Mar 2025)
  • In Riemannian settings: critical points are characterized by projected gradients (KKT system for affine-eigenpairs) (Mor et al., 2020)
  • In weighted-proximal methods: subdifferential conditions in WW-norm (Maia et al., 13 Jan 2026)

Convergence analysis:

4. Specialized Geometric and Statistical Instances

The NTR framework subsumes a broad array of algorithms:

Setting Geometry / Metric Key Algorithmic Instantiation
Metric spaces General metric dd Integer control, switching cost, TV-regularized (Manns, 2024)
Reinforcement learning KL/Bregman divergence Stochastic Policy Optimization (Zhao et al., 2019)
Matrix/Deep Learning Spectral/Nuclear norm Muon, normalized SGD, signSGD (Kovalev, 16 Mar 2025)
Weighted Hilbert/Euclidean spaces Weighted norm xW\|x\|_W Proximal Trust-Region, inexact prox (Maia et al., 13 Jan 2026)
Manifolds/Spheres Riemannian metric Riemannian trust-region, preconditioned (Mor et al., 2020)

Notable technical structures:

  • Natural-gradient or preconditioned step computation (e.g., H^k1g^k\hat H_k^{-1} \hat g_k for divergence constraints (Zhao et al., 2019))
  • Momentum and stochasticity explicit in algorithmic models (e.g., moving average surrogate for noise reduction (Kovalev, 16 Mar 2025))
  • Inexact proximal operators formalized via Fréchet subdifferentials (Maia et al., 13 Jan 2026)
  • Explicit orthogonalization and norm-based projections yielding analytic steps in certain spaces (Kovalev, 16 Mar 2025)

5. Computational and Practical Insights

NTR algorithms maintain, and often improve, the practical features which make classical trust-region methods desirable.

  • Non-Euclidean radii scheduling—e.g., no-reset vs. reset after acceptance—substantially impacts runtime. Empirically, no-reset schemes can reduce runtime by 40–80% with marginal effect on final objective (Manns, 2024).
  • Using criticality and model-reduction lower bounds tailored to the geometry avoids premature shrinking of the radius and guarantees global progress.
  • Explicit geometry-aware updates (e.g., spectral/orthogonal steps in Muon) have been shown to outperform heuristic alternatives (e.g., Orthogonal-SGDM) by maintaining unbiasedness in the surrogate direction (Kovalev, 16 Mar 2025).
  • For probability distributions, decoupling mean and variance updates with careful divergence constraints prevents premature collapse of the variance, which is essential for exploration in reinforcement learning (Zhao et al., 2019).
  • Weighted and Riemannian metrics enable variable preconditioning and more precise adaptation to local curvature, improving asymptotic and practical rates (Mor et al., 2020, Maia et al., 13 Jan 2026).

6. Extensions, Implementation, and Guidelines

Implementation of NTR algorithms is guided by a few universal steps:

  1. Geometry selection: Specify the norm, metric, or divergence compatible with domain structure (e.g., operator norm for matrices, KL for distributions, weighted norm for PDEs).
  2. Analytic or numerical step solver: For many norms, analytic solutions exist (normalized, sign, orthogonal steps); nonsmooth or composite problems may require proximal solvers in the chosen geometry (Kovalev, 16 Mar 2025, Maia et al., 13 Jan 2026).
  3. Momentum and variance handling: Necessary under stochastic or noisy oracles; buffer averaging improves robustness (Kovalev, 16 Mar 2025).
  4. Parameter tuning: Step-size, radius, and momentum are adapted based on problem-specific curvature and noise characteristics.
  5. Regularizer handling: Convex penalties (e.g., weight decay) are embedded directly in the NTR subproblem, maintaining decoupling from step-size (Kovalev, 16 Mar 2025).

For high-dimensional or structured domains (e.g., deep neural networks, optimal control), NTR provides a flexible theoretical foundation for combining geometry-aware adaptivity, global convergence, and practical tractability.


For comprehensive algorithmic and theoretical details, see the foundational resources (Manns, 2024, Zhao et al., 2019, Kovalev, 16 Mar 2025, Maia et al., 13 Jan 2026, Mor et al., 2020).

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 Non-Euclidean Trust Region (NTR) Framework.