The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A probabilistic residual quantizer for multimodal embeddings lifts advertiser value by 1.5% in live tests; the method improves embedding discretization and has been fully deployed across a major short‑video recommendation platform.

RQ-GMM: Residual Quantized Gaussian Mixture Model for Multimodal Semantic Discretization in CTR Prediction
Ziye Tong, Jiahao Liu, Weimin Zhang, Hongji Ruan, Derick Tang, Zhanpeng Zeng, Qinsong Zeng, Peng Zhang, Tun Lu, Ning Gu · February 13, 2026
arxiv rct high evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Ziye Tong unresolved corpus identity
  2. Jiahao Liu unresolved corpus identity
  3. Weimin Zhang unresolved corpus identity
  4. Hongji Ruan unresolved corpus identity
  5. Derick Tang unresolved corpus identity
  6. Zhanpeng Zeng unresolved corpus identity
  7. Qinsong Zeng unresolved corpus identity
  8. Peng Zhang unresolved corpus identity
  9. Tun Lu unresolved corpus identity
  10. Ning Gu unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Ziye Tong provider ID
  2. Jiahao Liu provider ID
  3. Weimin Zhang provider ID
  4. Hongji Ruan provider ID
  5. Derick Tang provider ID
  6. Zhanpeng Zeng provider ID
  7. Qinsong Zeng provider ID
  8. Peng Zhang provider ID
  9. Tun Lu provider ID
  10. Ning Gu provider ID
RQ-GMM—a probabilistic residual quantization method for discretizing multimodal embeddings—improves codebook utilization and reconstruction accuracy and yields a 1.502% increase in Advertiser Value in large-scale online A/B tests.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Multimodal content is crucial for click-through rate (CTR) prediction. However, directly incorporating continuous embeddings from pre-trained models into CTR models yields suboptimal results due to misaligned optimization objectives and convergence speed inconsistency during joint training. Discretizing embeddings into semantic IDs before feeding them into CTR models offers a more effective solution, yet existing methods suffer from limited codebook utilization, reconstruction accuracy, and semantic discriminability. We propose RQ-GMM (Residual Quantized Gaussian Mixture Model), which introduces probabilistic modeling to better capture the statistical structure of multimodal embedding spaces. Through Gaussian Mixture Models combined with residual quantization, RQ-GMM achieves superior codebook utilization and reconstruction accuracy. Experiments on public datasets and online A/B tests on a large-scale short-video platform serving hundreds of millions of users demonstrate substantial improvements: RQ-GMM yields a 1.502% gain in Advertiser Value over strong baselines. The method has been fully deployed, serving daily recommendations for hundreds of millions of users.

Summary

Main Finding

RQ-GMM (Residual Quantized Gaussian Mixture Model) is a two-stage multimodal discretization method that combines residual quantization with Gaussian Mixture Models (GMMs). By modeling residual embeddings probabilistically and using soft assignments with residual quantization, RQ-GMM produces higher-quality discrete semantic IDs (better reconstruction RMSE, near-complete codebook utilization) that, when used as categorical features in CTR models, yield consistent offline and online gains. In a large-scale online A/B test on a short-video platform, RQ-GMM improved Advertiser Value by 1.502% over RQ-VAE and 3.600% over direct embedding concatenation; it is deployed in production serving hundreds of millions of users.

Key Points

  • Motivation
    • Directly feeding pre-trained continuous modal embeddings (e.g., BERT/CLIP) into CTR models is suboptimal because pre-trained objectives differ from preference modeling and joint training dynamics mismatch with sparse ID features.
    • Two-stage discretization (map embeddings → semantic IDs → CTR model) decouples semantic extraction and preference learning, stabilizes training, and provides coarse-to-fine signals.
  • Method (RQ-GMM)
    • Replace hard clustering (K-means / VQ) with GMM at each residual quantization level.
    • Model residuals r(l-1) as K-component Gaussian mixtures with diagonal covariances; compute posteriors γ and select k* = argmax γ for residual propagation and ID assignment.
    • Train per level with EM (E-step: soft posteriors; M-step: update mixing coefficients, means, variances). Use hard assignment for residual propagation to keep inference consistent.
    • Semantic ID is the sequence of selected component indices across L levels: ID(x) = [k1, ..., kL].
  • Advantages over baselines
    • Captures cluster shape and uncertainty (covariances) → better modeling of complex multimodal distributions.
    • Soft assignment smooths boundary effects; mixing coefficients reflect data density, mitigating codebook collapse.
    • Improved utilization and reconstruction vs VQ-VAE, RQ-VAE, and RQ-KMeans.
  • Deployment & integration
    • IDs stored in feature store; inference is batched offline so online latency is unchanged.
    • Semantic IDs used as categorical embeddings concatenated or combined with MLP-transformed continuous embedding in standard CTR models (FNN, IPNN, DeepFM-style architectures).

Data & Methods

  • Datasets
    • Public offline: Amazon-Review categories — Appliances, Beauty, Automotive. Ratings binarized (1–3 → 0; 4–5 → 1); chronological 8:1:1 train/val/test splits.
    • Industrial online: proprietary short-video platform (hundreds of millions DAU) for 7-day A/B testing measuring Advertiser Value (AV).
  • Baselines
    • None (no multimodal), direct embedding concatenation, VQ-VAE, RQ-VAE (residual quantized VAE), RQ-KMeans.
  • Implementation details
    • Embeddings: BERT 768-d for offline experiments.
    • Discretization configurations: two-level residual structure with 128 codes per level for RQ-GMM and RQ-KMeans (VQ-VAE used 256 single-level; RQ-VAE two-level 128).
    • EM/K-means iterations up to 30; diagonal covariance for efficiency.
    • CTR models: FNN and IPNN backbones; embedding dimension for IDs = 16; CTR MLP hidden layers (128, 32, 8); binary cross-entropy loss.
  • Metrics & results
    • Discretization: RMSE reconstruction and codebook utilization (proportion of codes used). RQ-GMM achieved the lowest RMSE and highest utilization across datasets.
    • CTR: AUC and LogLoss improvements across datasets and backbones; RQ-GMM consistently best.
    • Online: RQ-GMM improved Advertiser Value by 3.600% vs embedding concatenation, 1.502% vs RQ-VAE, and 0.613% vs RQ-KMeans (statistically significant).
  • Complexity
    • Training per level: O(T · N · K · D) for T EM iterations; inference per sample: O(L · K · D); memory O(L · K · D) for means and variances. Diagonal covariances reduce overhead; RQ-GMM converges faster in practice.

Implications for AI Economics

  • High-leverage small-percentage gains
    • A ~1.5% Advertiser Value lift at platform scale (hundreds of millions daily users) translates to large absolute revenue/ROI improvements. Small relative CTR/AV gains justify investment in better multimodal discretization methods.
  • Cost vs benefit trade-offs
    • RQ-GMM increases offline training complexity (EM with covariance updates) but converges faster and is run offline. Serving costs remain low because IDs are precomputed and stored—no added online inference burden—so operational costs rise modestly while revenue increases.
  • Efficiency and capacity utilization
    • Near-complete codebook utilization implies more efficient representation capacity (fewer wasted code entries), enabling more expressive discrete semantics without growing codebook size—reduces need for larger codebooks and associated storage/maintenance costs.
  • Product & auction effects
    • More accurate CTR predictions change auction dynamics and estimated ad values; improved prediction precision can increase advertiser willingness to bid and/or platform pricing power, but may also require recalibration of bidding/outcome metrics.
  • Deployability and operational considerations
    • Offline batch inference and feature-store integration make RQ-GMM practical to deploy in large production systems with low latency constraints—lower engineering risk than online joint-training alternatives.
    • Regular retraining of GMMs and periodic re-generation of IDs (to reflect content drift) is necessary; this maintenance cost should be accounted for in long-term economic evaluation.
  • Generalizability & multiplier effects
    • The approach is applicable beyond short-video: other recommender systems and ad platforms with multimodal content can replicate gains. If broadly adopted, such discretization methods can systematically raise industry-level CTRs and ad market values.
  • Risks & caveats
    • Economically meaningful improvements depend on stable online A/B results and continued distributional match between training embeddings and live content; codebook drift or modality shifts (new content types) may reduce gains if not managed.
    • Privacy/attribution: discretizing embeddings may alter privacy/attribution characteristics of features; teams should assess compliance and upstream embedding sensitivity.

Bottom line: RQ-GMM offers an economically attractive, operationally practical way to convert multimodal embeddings into high-quality categorical signals for CTR models, yielding meaningful revenue improvements at scale with modest operational overhead.

Assessment

Paper Typerct Evidence Strengthhigh — The paper reports a randomized online A/B test at production scale (hundreds of millions of users) showing a 1.502% lift in Advertiser Value, which provides strong causal evidence for the effect within that platform; robustness is further supported by offline experiments on public datasets. Remaining caveats are limited transparency about randomization details, duration, and potential interference. Methods Rigormedium — The empirical evaluation combines offline benchmarks and a production A/B test, plus comparisons to strong baselines; however, the paper (as summarized) omits key methodological details useful for full assessment (randomization procedure, sample sizes by arm, experiment duration, pre-registration, multiple testing corrections, and exact metric definitions), which prevents classifying rigor as high. SampleOffline: standard public multimodal/CTR datasets (unspecified) used for reconstruction and downstream prediction benchmarks. Online: production A/B tests on a large short-video recommendation platform serving hundreds of millions of daily users; treatment compared RQ-GMM discretized embeddings against strong deployed baselines with Advertiser Value as primary business metric. Themesproductivity innovation IdentificationLarge-scale online randomized A/B tests: users (or traffic buckets) on a short-video ad platform were randomly assigned to the RQ-GMM recommender vs baseline, and causal effects on platform business metrics (Advertiser Value, CTR-related outcomes) were measured; supported by offline experiments on public CTR datasets for robustness. GeneralizabilityResults are from a single large short-video ad platform and may not generalize to other platform types (search, display, e-commerce)., Advertiser Value and CTR dynamics are platform- and market-specific (ad formats, auction rules, user behavior)., Effect sizes may depend on the platform's existing infrastructure, model architectures, and codebase optimizations., Public offline datasets may not capture real-world production scale, content distribution, or temporal dynamics., Geographic, demographic, or temporal variation (campaign seasonality) could alter impacts in other settings.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Multimodal content is crucial for click-through rate (CTR) prediction. Decision Quality positive CTR prediction performance
Reading fidelity high
Study strength low
not reported
0.3
Directly incorporating continuous embeddings from pre-trained models into CTR models yields suboptimal results due to misaligned optimization objectives and convergence speed inconsistency during joint training. Decision Quality negative CTR model performance when using continuous embeddings (training convergence and final effectiveness)
Reading fidelity high
Study strength medium
not reported
0.6
Discretizing embeddings into semantic IDs before feeding them into CTR models offers a more effective solution. Decision Quality positive CTR model performance when using discretized semantic IDs
Reading fidelity high
Study strength medium
not reported
0.6
Existing discretization methods suffer from limited codebook utilization, reconstruction accuracy, and semantic discriminability. Other negative codebook utilization; reconstruction accuracy; semantic discriminability of discretized embeddings
Reading fidelity high
Study strength medium
not reported
0.6
RQ-GMM (Residual Quantized Gaussian Mixture Model) introduces probabilistic modeling (Gaussian Mixture Models combined with residual quantization) to better capture the statistical structure of multimodal embedding spaces. Other positive representation modeling quality of multimodal embedding spaces
Reading fidelity high
Study strength low
not reported
0.3
Through Gaussian Mixture Models combined with residual quantization, RQ-GMM achieves superior codebook utilization and reconstruction accuracy. Other positive codebook utilization; reconstruction accuracy
Reading fidelity high
Study strength medium
not reported
0.6
Experiments on public datasets and online A/B tests on a large-scale short-video platform demonstrate that RQ-GMM yields a 1.502% gain in Advertiser Value over strong baselines. Firm Revenue positive Advertiser Value
Reading fidelity high
Study strength high
1.502% gain in Advertiser Value
1.0
The method has been fully deployed, serving daily recommendations for hundreds of millions of users. Adoption Rate positive deployment reach (daily users served)
Reading fidelity high
Study strength medium
not reported
0.6

Notes