Papers
Topics
Authors
Recent
Search
2000 character limit reached

Delta Decomposition: DeRS Paradigm

Updated 20 November 2025
  • Delta Decomposition is a dual-framework method that splits complex objects into a shared base and compact deltas, applicable in Boolean DNFs and neural MoE models.
  • In Boolean analysis, the approach employs polynomial factorization to achieve the finest Δ-partition, ensuring efficient and unique DNF decomposition.
  • In deep learning, the DeRS paradigm compresses expert weights using sparse, quantized, or low-rank representations, significantly reducing memory and computation costs.

Delta Decomposition (DeRS Paradigm) encompasses two distinct but conceptually related frameworks for structured decomposition: (1) the Δ-decomposition of positive Disjunctive Normal Forms (DNFs) in Boolean function analysis, as formalized using the Delta‐and‐Rooted-Semiring (DeRS) paradigm (Ponomaryov, 2018); and (2) the Decompose‐Replace‐Synthesis (DeRS) paradigm for parameter-efficient upcycled Mixture-of-Experts (MoE) models in deep learning (Huang et al., 3 Mar 2025). Both leverage a core principle: decomposing a complex object into a shared “base” and compact “deltas” or components, but the mathematical and algorithmic contexts differ substantially.

1. Definition and Theoretical Foundation

In Boolean function analysis, Δ-decomposition refers to expressing a positive DNF φ\varphi as a conjunctive product of DNFs ψ1,,ψk\psi_1,\dots,\psi_k such that all subcomponents may only intersect on a shared set of “Delta” variables Δ\Delta, with each non-Δ\Delta block non-empty. The decomposition is called finest if it admits no further nontrivial refinement.

In neural model upcycling, DeRS refers to decomposing dense expert weights WiRd×dhW_i\in\mathbb R^{d\times d_h} as Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i, optimizing storage and computation by expressing Δi\Delta_i in a lightweight representation while WbaseW_{\mathrm{base}} remains expert-shared.

Both frameworks exploit high redundancy—either logical or algebraic—in composition, enabling a transition to more compact or structured representations without loss of essential information (Ponomaryov, 2018, Huang et al., 3 Mar 2025).

2. DeRS for Positive DNF Decomposition

A positive DNF is a disjunction of terms over Boolean variables, where terms are conjunctions of unnegated variables. In the DeRS paradigm for Boolean functions, a positive DNF φ(x1,,xn)=tTitxi\varphi(x_1,\dots,x_n)=\bigvee_{t\in T}\bigwedge_{i\in t} x_i is represented as a multilinear Boolean polynomial f(x)=tTitxif(x) = \sum_{t\in T}\prod_{i\in t} x_i. Disjunctions correspond to addition, conjunctions to multiplication, and variables are interpreted in the Boolean ring.

The key insight is that ψ1,,ψk\psi_1,\dots,\psi_k0-decomposition corresponds precisely to the factorization of ψ1,,ψk\psi_1,\dots,\psi_k1 into irreducible multilinear Boolean polynomials whose variable sets intersect only at ψ1,,ψk\psi_1,\dots,\psi_k2. Each irreducible factor maps back to a sub-DNF, producing the finest partitioning of the original function (Ponomaryov, 2018).

The following table summarizes the logical correspondence:

Aspect DNF Decomposition Polynomial Factorization
Object Positive DNF ψ1,,ψk\psi_1,\dots,\psi_k3 Multilinear polynomial ψ1,,ψk\psi_1,\dots,\psi_k4
Decomposition ψ1,,ψk\psi_1,\dots,\psi_k5 ψ1,,ψk\psi_1,\dots,\psi_k6
Shared variables ψ1,,ψk\psi_1,\dots,\psi_k7 Overlaps in ψ1,,ψk\psi_1,\dots,\psi_k8
Fineness No further ψ1,,ψk\psi_1,\dots,\psi_k9-splitting All factors irreducible

This correspondence enables exploitation of algebraic factoring algorithms for logic decomposition, yielding a unique, finest Δ\Delta0-partition in polynomial time for positive DNFs.

3. Algorithmic Framework and Complexity

The DeRS algorithm for positive DNF Δ-decomposition consists of: (1) removing redundant terms, (2) computing Δ-atoms (intersections of terms with Δ\Delta1), (3) for each Δ-atom pair, testing decomposition via specialized restrictions and polynomial partitioning (FindPartition subroutine), (4) constructing a partition graph from obtained blocks, and (5) extracting the finest partition via connected components.

Algorithmic steps include:

  1. Reduce Δ\Delta2 by eliminating redundancy.
  2. Extract all Δ-atoms Δ\Delta3.
  3. For pairs Δ\Delta4, restrict Δ\Delta5 to the assignment Δ\Delta6 (forcing other Δ\Delta7 variables to zero), and apply polynomial factorization (FindPartition) to the restricted DNF's polynomial form.
  4. Aggregate all variable blocks into a graph with cliques for shared blocks.
  5. Identify connected components as distinct variable blocks for DNF decomposition.
  6. Project and minimize original DNF onto blocks Δ\Delta8 to obtain each Δ\Delta9.

The complexity is Δ\Delta0 for Δ\Delta1 terms and Δ\Delta2 variables, with the polynomial time bound achieved by efficient factoring algorithms leveraging formal derivatives and substructure exploitation (Ponomaryov, 2018).

4. Delta Decomposition in Upcycled Mixture-of-Experts Models

In upcycled MoE neural models, DeRS employs the decomposition: Δ\Delta3 where Δ\Delta4 is the Δ\Delta5-th expert's weight matrix, Δ\Delta6 the shared base (often a pretrained FFN weight), and Δ\Delta7 a small expert-specific correction. Empirical cosine similarity Δ\Delta8 supports the intuition that Δ\Delta9 is structurally redundant, motivating storage reduction (Huang et al., 3 Mar 2025).

To exploit this redundancy, DeRS replaces full WiRd×dhW_i\in\mathbb R^{d\times d_h}0 with one of several lightweight encodings:

  • Sparse-matrix (DeRS-SM): Store only a small subset of nonzero entries, defined by a binary mask with high drop rate (WiRd×dhW_i\in\mathbb R^{d\times d_h}1).
  • Quantized form (DeRS-Q): Uniformly quantize WiRd×dhW_i\in\mathbb R^{d\times d_h}2 to low bit-width (WiRd×dhW_i\in\mathbb R^{d\times d_h}3).
  • Low-rank factorization (DeRS-LM): Represent WiRd×dhW_i\in\mathbb R^{d\times d_h}4 as WiRd×dhW_i\in\mathbb R^{d\times d_h}5, with low WiRd×dhW_i\in\mathbb R^{d\times d_h}6.

Each representation yields drastic reductions in parameter and memory cost.

5. Practical Algorithms for Compression and Training

Inference-Time Compression (DeRS Compression)

  1. Decompose: WiRd×dhW_i\in\mathbb R^{d\times d_h}7.
  2. Compress: WiRd×dhW_i\in\mathbb R^{d\times d_h}8 via sparsification, quantization, or low-rank.
  3. (Optional) Fine-tune compression parameters to minimize WiRd×dhW_i\in\mathbb R^{d\times d_h}9.
  4. At inference, synthesize Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i0 on demand.

Training-Time Upcycling (DeRS Upcycling)

  1. Instantiate expert deltas Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i1 efficiently (zero-filled sparse or low-rank).
  2. Forward pass: route input, synthesize Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i2 for active experts.
  3. Backpropagate and update Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i3 and compact deltas. Optionally, regularize for sparsity or rank.

This decomposed approach enables upcycled MoEs to scale in parameter count and memory footprint orders-of-magnitude below naive multi-expert allocation.

6. Empirical Results and Application Domains

DeRS achieves high compression while maintaining or slightly improving accuracy on a range of benchmarks:

Task/Model Vanilla MoE Params Added DeRS-SM Params DeRS-LM Params Accuracy Delta
MoE-LLaVA-Phi Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i4B Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i5M Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i6M Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i7, Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i8
Med-MoE-StableLM Wi=Wbase+ΔiW_i = W_{\mathrm{base}} + \Delta_i9B Δi\Delta_i0M Δi\Delta_i1M Δi\Delta_i2, Δi\Delta_i3
Coder-MoE Δi\Delta_i4B Δi\Delta_i5M Δi\Delta_i6M Δi\Delta_i7, Δi\Delta_i8

Memory and computational use are reduced by up to 52.7% for model size, 21.2% for training memory, and 43.8% for inference memory in Coder-MoE scenarios (Huang et al., 3 Mar 2025). Application domains include multi-modal learning, medical VQA, program synthesis, and vision-LLMs.

7. Limitations, Extensions, and Open Problems

For Boolean DNFs, Δ-decomposition is polynomial-time tractable only in the positive (negation-free) case; extending these results to general or non-Boolean settings, or to other logical formats (BDD, CNF), remains open and is known to be coNP-hard in some cases. Selection of the “optimal” Δi\Delta_i9 is combinatorial and not addressed by existing algorithms (Ponomaryov, 2018).

In upcycled MoE models, DeRS achieves maximal efficiency when all experts are close to WbaseW_{\mathrm{base}}0; large deviations may reduce representational sufficiency with sparse or low-rank WbaseW_{\mathrm{base}}1. The choice between sparse and low-rank forms trades off memory efficiency against expressivity. Maintaining WbaseW_{\mathrm{base}}2 as trainable is empirically preferable.

In both domains, the DeRS paradigm evidences that leveraging structural redundancy enables substantial gains in computational efficiency, minimization, and interpretability, while open questions remain on extension to less constrained settings and criteria for optimal decomposition.

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

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 Delta Decomposition (DeRS Paradigm).