Listwise Generation Raises Short-Video Engagement in Existing Rankers

LIGE-GR adds causal list context, a list-level value function, and RL beam decoding to existing rankers, raising Reels time spent by 1.14%.

Editorial Desk·September 17, 2026·4 min readstrong

Underlying Paper

LIGE-GR: A Smooth Leap from Ranking to Generative Recommendation in the LLM Era

The remarkable success of large language models (LLMs) has provided important inspiration for the next generation of recommender systems. Structurally, recommendation and language generation share a similarity: both aim to produce an ordered sequence that optimizes the user's experience. However, how to precisely absorb the essence of the LLM paradigm into mature industrial recommender systems remains an open problem. There are two challenges. First, it is unclear how to incorporate sequence-level generation and optimization from the LLM paradigm into recommendation. Second, real-world recommender systems are mature systems that have been iteratively customized for years around specific products, business constraints, serving infrastructure, and organizational ownership. Replacing such systems wholesale is often technically risky and organizationally disruptive. In this paper, we propose LIGE-GR, a listwise generation and evaluation recommendation framework that upgrades from a traditional ranking system based on itemwise recommendation toward a generative recommendation paradigm. Instead of rebuilding the entire recommendation stack from scratch, LIGE-GR generalizes the existing pointwise recommendation system into a listwise generation system. This allows mature recommender systems to benefit from listwise optimization while preserving compatibility with existing models, value functions, and serving infrastructure. We validate LIGE-GR in short-video recommendation on Instagram Reels and Facebook Video. On these recommendation surfaces, LIGE-GR improves time spent by 1.14 percent on Instagram Reels and 0.72 percent on Facebook Video, while requiring only modest additional inference resources.

arXiv:2609.18148Submitted: Sep 17, 2026v1

Most large-scale recommenders still score candidates independently, then greedily assemble a feed. That procedure is efficient and compatible with mature serving stacks, but it cannot directly ask whether the combination of items is good: adjacent videos may be repetitive, creators may be over-concentrated, and a locally high-scoring placement can constrain the rest of the list. LIGE-GR reframes ranking as sequential list construction while retaining the incumbent ranker as part of the system.

Core Contribution

The paper’s contribution is an upgrade path rather than a wholesale generative-recommender replacement. LIGE-GR moves three components from itemwise to listwise operation: the ranker is made context-aware, the objective scores a complete sequence rather than summing independent item scores, and greedy decoding is replaced by an RL-based search procedure. The authors’ central claim is that these changes let a production ranker optimize interactions among placements without replacing its models, value functions, or serving infrastructure.

That distinction matters operationally. Prior generator-evaluator systems commonly add a dedicated reranking stage or generate then score complete candidate slates. LIGE-GR instead interleaves construction and evaluation inside the ranking stage, scoring partial lists and pruning weak prefixes before completion. It is therefore aimed at systems where latency, reliability, and ownership boundaries make a clean-slate LLM-style recommender impractical.

Technical Approach

The architecture retains a context-free module that scores every candidate from user features through an interaction network and per-task heads. Its intermediate candidate representations are passed to a lightweight context-aware module: a four-layer causal Transformer. At position tt, this module conditions its prediction for the current candidate on items placed at earlier positions, allowing the score to change with the evolving list rather than the user alone.

Figure 3 makes the migration path clear: the incumbent context-free scorer remains the first component, while the Transformer refines its per-task predictions using only preceding placements. The task heads share weights across candidates and positions, which keeps the context-aware addition comparatively small.

Figure 3. The listwise model. The context-free module (left) is the itemwise model: each candidate v_t is scored together with the user features u by an interaction network and per-task heads. Its intermediate representations v'_t are handed to the lightweight context-aware module (right), which refines all per-task predictions with a four-layer causal Transformer that attends only to preceding items. Within each module, all task heads share the same network weights, applied at every item or position.

A listwise value model then evaluates the sequence as a whole. The decoder uses RL-based beam search rather than committing to the single greedy path through the position-by-candidate lattice. In replay, increasing beam width improves the accumulated VM+CL score relative to a width-1 reference, but the returns flatten: 3.16% at width 2, 5.63% at width 4, 6.72% at width 6, and 7.42% at width 8. The authors select b=6b=6 because it is already in that flatter regime.

Results and Analysis

The production evidence is more useful than the replay curve alone. On Instagram Reels, the paper reports a 1.14% increase in time spent; on Facebook Video, it reports 0.72%. In the beam-width analysis, moving from width 1 to 6 left time spent and video views near neutral while increasing likes by 0.74% and reshares by 1.21%. That is a useful warning against treating an offline value gain as a direct proxy for broad consumption: a wider search improved reaction metrics, but not the main consumption measures in that comparison.

The paper also examines counterfactual paired requests on Reels rather than limiting evaluation to engagement. Across 13,197 paired requests from 7,110 logged users, it reports more topical variety and exploration: topic entropy rises 1.14% to 2.37%, distinct topic clusters 1.34% to 2.40%, distinct creators 0.66%, and interest-matched topic content 1.65%. Repetition declines, with the longest same-topic run down 4.03% to 7.4% and adjacent-video cosine similarity down 3.68%.

Those gains come with a trade-off. Same-creator concentration falls 2.98%, familiar-creator content falls 6.23%, and videos under 72 hours old fall 0.66%. The authors characterize the latter as a composition regression, not a quality improvement. The evidence supports the narrower conclusion that listwise construction can produce modest online engagement gains while redistributing exposure toward broader topics and creators. It does not establish that the method is the final form of generative recommendation: the conclusion explicitly notes that the current system handles input pools on the order of hundreds and would need technologies such as semantic IDs for much larger candidate spaces.

Limits in Practice

The online tests cover two short-video surfaces, so the reported gains are meaningful but do not establish transfer to other recommendation domains. The framework also depends on a learned listwise value and an RL decoder, making it sensitive to how those objectives encode product trade-offs. The observed freshness decline and near-neutral consumption response in the beam analysis show why list composition should be monitored alongside aggregate engagement.

Evidence Box

strong

Key Claims

  • Context-aware ranking captures dependencies among earlier list placements
  • Listwise values and RL decoding improve sequential recommendation over greedy itemwise ranking
  • The framework upgrades existing ranking stacks without a separate reranking stage
  • Listwise construction broadens topic and creator exposure

Key Results

  • Time spent +1.14% on Instagram Reels and +0.72% on Facebook Video
  • Beam width 6 improved accumulated VM+CL score 6.72% over the width-1 replay reference
  • Topic entropy +1.14% to +2.37% and distinct topic clusters +1.34% to +2.40% across paired Reels requests
  • Adjacent-video cosine similarity −3.68% and longest same-topic streak −4.03% to −7.4%

Limitations & Caveats

  • Online evaluation is limited to Instagram Reels and Facebook Video
  • Current candidate pools are on the order of hundreds rather than much larger retrieval spaces
  • Videos under 72 hours old declined 0.66% in paired-request composition analysis
  • Wider beam search raised likes 0.74% and reshares 1.21% without broad consumption gains

Related Articles

Readers are encouraged to consult the original arXiv paper for complete details. SOTA Papers does not make claims beyond what is supported by the authors' reported evidence.