Rectified Distribution Matching Reg.
- RDMReg is a regularization technique that induces explicit ℓ0-controlled sparsity by aligning non-negative JEPA features with a rectified generalized Gaussian prior.
- It employs a sliced Wasserstein loss to match learned representations to a tailored RGG distribution, ensuring maximum-entropy properties under ℓp constraints.
- The method enables tunable sparsity-performance trade-offs and outperforms traditional Gaussian regularizations by offering controlled sparsity with high information capacity.
Rectified Distribution Matching Regularization (RDMReg) is a regularization technique designed to induce explicit -controlled sparsity while maintaining maximum-entropy properties in representations learned by Joint-Embedding Predictive Architectures (JEPAs). RDMReg aligns learned non-negative representations to samples from a Rectified Generalized Gaussian (RGG) prior using a sliced two-sample distribution-matching loss. This method enables precise tuning of expected sparsity and generalizes prior Gaussian-based regularizations by introducing rectification, thus producing representations that are sparse, non-negative, and information-rich under norm constraints (Kuang et al., 1 Feb 2026).
1. Mathematical Formulation
RDMReg centers on matching representations to the RGG distribution. For , mean $\mu \in \mathbb{R}$, and scale , the univariate RGG, denoted , is defined as a mixture: a point mass at zero with weight (the CDF of the unrectified generalized Gaussian at ) and a truncated generalized Gaussian on . The density for with respect to 0 is: 1 For independent RGG coordinates 2, the expected 3 sparsity is 4, allowing direct control over the fraction of nonzero activations by tuning 5.
2. Distribution Matching Objective
Given encoder-projector 6, two augmented views 7, and non-negative representations 8, the RDMReg loss matches the feature distribution to the RGG prior using a sliced Wasserstein approach. For random projection 9:
- Project both learned and RGG target features: 0.
- Compute sliced 2-Wasserstein:
1
where 2 denotes sorting.
The regularization is the expectation over projections and view-pairs: 3 The JEPA loss becomes
4
3. Maximum-Entropy and Sparsity Guarantees
Among all distributions on 5 with fixed expected 6 norm, the truncated product Generalized Gaussian achieves maximum differential entropy. For 7, each coordinate is a positive-orthant truncated generalized Gaussian. The RGG, while not absolutely continuous (due to its atom at zero), retains this maximum-entropy property on its support.
The effective entropy is characterized via the Rényi information dimension. Theorem 3.8 provides that the information dimension of an RGG distributed vector is 8, where 9 denotes ambient dimension. The entropy decomposes into a Bernoulli (0) term plus the entropy of the truncated-GG on the active coordinates, enabling explicit 1 control without sacrificing information content.
4. Algorithmic Implementation
The implementation of RDMReg within JEPA consists of the following steps:
- Forward computation: Given batch size 2 of view pairs 3, compute 4, 5.
- Invariance loss: 6.
- Sample RGG targets: Draw 7 by sampling i.i.d. 8 then applying 9.
- Sliced Wasserstein regularization: Sample projection directions 0 (for 1 projections). For each, compute 2 for both 3 and 4, average to get 5.
- Backpropagation: Update via 6.
Typical runtime is determined by sorting operations, with 7 per slice and practical 8 in the few thousands even for 9.
5. Hyperparameterization and Sparsity–Performance Trade-off
RDMReg affords direct and interpretable control over sparsity and representational properties:
- Norm order 0: 1 (rectified Gaussian) yields dense codes; 2 (rectified Laplace) produces sparser codes; 3 further approximates 4 sparsity.
- Mean shift 5: Controls expected active fraction, corresponding to 6 per dimension; empirically, 7.
- Scale 8: Two options: (i) 9 for unit variance of pre-ReLU Gaussian, (ii) 0 for unit variance of RGG; (i) is recommended due to simplicity and empirical parity on performance frontiers.
- Number of slices 1: Effective performance with 2–3 largely independent of feature dimension.
- Trade-off: Performance remains stable up to approximately 95% zeros; higher sparsity induces sharp accuracy drops. Optimal Pareto fronts are attained with 4 and moderate 5 or 6.
6. Comparison to Gaussian-Based Regularizations
Prior approaches, notably LeJEPA (SIGReg), regularize toward isotropic Gaussian targets via similar sliced-Wasserstein losses, enforcing only 7 constraints and producing dense, non-negative activations without control over 8 sparsity.
RDMReg strictly generalizes these methods:
- If 9 and rectification is absent, the method recovers the Gaussian case.
- Adding ReLU and RGG targets introduces an explicit 0 handle, preserving maximum entropy in the nonzero coordinates.
Empirical results demonstrate RDMReg learns representations with 5–10% density while matching or exceeding accuracy of dense baselines on linear-probe and transfer tasks, and yields more factorial codes with lower nHSIC. Qualitative probes indicate preservation of semantic content even at extreme sparsity levels.
7. Recommendations and Practical Use
Recommended settings for RDMReg in practice:
- Choose 1 (rectified Laplace) or intermediate 2 for moderate sparsity.
- Adjust 3 to control expected fraction of zeros (50–90%).
- Use 4 for simplicity.
- Set the number of projections 5–6 for 7.
- Balance invariance and RDMReg losses with 8–9.
RDMReg can be integrated as a “plug-in” into any JEPA variant, enabling explicit, controlled transitions between dense maximum-entropy and sparse maximum-entropy codes while preserving high information capacity under 0 constraints (Kuang et al., 1 Feb 2026).