InforID adaptively sizes semantic-ID slots and codebooks in parallel generative recommendation

Adaptive Semantic Capacity Allocation for Parallel Generative Recommendation

Chenxi Li, Yuchen Lu, Xu Yang

cs.AI

2026-08-10

InforID replaces fixed semantic-ID structure in parallel generative recommendation with greedy capacity allocation by reconstruction loss, lifting Recall@5 across four Amazon benchmarks.

What problem this solves

Autoregressive semantic-ID recommenders are bottlenecked by expensive beam-search decoding, which caps how long item identifiers can be. Parallel generation (predicting all semantic-ID tokens at once) removes that bottleneck and allows longer IDs. But existing semantic-ID methods still rely on a manually predefined, homogeneous ID structure: both the number of slots and the codebook size per slot are fixed hyperparameters. This ignores that different semantic subspaces need different representational capacity, and allocating equal capacity to low-utility slots wastes prediction power. The authors confirm this: uniformly expanding slots gives limited gains, evidence of redundant capacity in homogeneous IDs.

Method

InforID is a lightweight adaptive semantic-target construction framework whose core is allocating a fixed capacity budget across candidate semantic slots, jointly setting the effective ID length and per-slot codebook size. Three steps:

Why these choices: exhaustive search is impractical, so greedy is an efficient approximation; reconstruction loss is cheap and preserves semantic distinctions; dropping zero-bit slots lets ID length be data-driven; and parallel prediction preserves the efficiency edge over autoregressive methods.

Results

Four Amazon review benchmarks (Sports, Beauty, Toys, CDs), metrics Recall/NDCG at 5 and 10, baselines including SASRec, RecJPQ, VQ-Rec, TIGER, and RPG. InforID pushes the strongest baseline, RPG, further on every dataset:

DatasetRPG R@5InforID R@5
Sports0.03140.0329 (+4.8%)
Beauty0.05500.0562
Toys0.05920.0613
CDs0.04980.0521

On capacity allocation (PQ uniform, OPQ optimized-but-homogeneous, InforID adaptive, same bit budget), InforID reaches NDCG@10 of 0.0279 on Sports versus 0.0255 for OPQ and 0.0239 for PQ, with the lowest reconstruction loss (0.583 vs 0.775 and 1.000) and lower ID collision rates. Performance rises with total budget B but saturates, indicating diminishing returns on semantic capacity.

Why it matters

For generative-recommendation builders this is a lightweight, plug-and-play improvement: no change to the training objective, no new quantization algorithm, just replacing the fixed homogeneous ID structure with a reconstruction-loss-driven heterogeneous one at the target-construction stage. It improves accuracy under the same capacity budget while keeping one-step parallel prediction. It also yields an interpretable byproduct: the bits allocated to each slot directly reflect how important that semantic subspace is.

Limitations

The authors scope it themselves: reconstruction loss is only a proxy, not the final criterion, which remains downstream retrieval performance; the framework proposes no new quantization algorithm for embedding compression, only target-space capacity allocation; all ID construction is offline. The absolute gain on Sports (+4.8%, R@5 from 0.0314 to 0.0329) is modest, and smaller on the other three datasets, so readers should weigh whether the integration is worth it. The paper includes a GenAI usage disclosure: tools were used only for grammar and figure styling, not for scientific claims.

Terms

Source

What people are saying

Related papers

All paper explainers