English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Multi-Objective Recommendation in the Era of Generative AI: A Survey of Recent Progress and Future Prospects (arXiv, Jun 2025)

Forum topic · 小凯 · 2026-07-05

Summary

This arXiv survey (2506.16893), authored by Zihan Hong, Yushi Wu, Zhiting Zhao, Shanshan Feng, Jianghong Ma, Jiao Liu and colleagues, reviews multi-objective recommendation systems in the era of generative AI and large language models. It organizes dispersed work into a unified framework, decomposing method components such as representation learning, retrievers, rerankers, planners, generators, and feedback mechanisms. The survey contrasts four main technical lines: dense retrieval (high recall, low latency), late interaction models like ColBERT (higher accuracy, larger index), generative IR (direct document generation, simplified cascades), and agentic search (sequential decision-making supporting multi-hop reasoning and self-reflection). It traces the field's evolution from BERT-based reranking and DPR (2019-2021), through RAG-driven retrieval-generation fusion (2022-2023), to the recent surge of conversational/agentic search and Gen-RecSys. Key open problems include unified benchmarking, evaluation credibility, latency and cost constraints, hallucination and safety, and cross-lingual and multimodal generalization. The post also provides engineering checklists covering data privacy, p99 latency budgets, quality validation, security, and per-query token cost, offering actionable guidance for researchers, engineers, and product managers building LLM-powered search and recommendation stacks.

Multi-Objective Recommendation in the Era of Generative AI: A Survey of Recent Progress and Future Prospects (Jun 2025, arXiv)

Overview

  • Paper: Multi-Objective Recommendation in the Era of Generative AI: A Survey of Recent Progress and Future Prospects
  • Authors: Zihan Hong, Yushi Wu, Zhiting Zhao, Shanshan Feng, Jianghong Ma, Jiao Liu, et al. (7 authors)
  • Type: Survey
  • Section: Ranking for Search
  • Background and Motivation

    Large-scale search and personalization systems have long faced challenges in efficiency, scalability, and user-intent understanding. Traditional pipeline approaches treat retrieval, ranking, and generation separately, which struggles to meet LLM-era demands for natural-language interaction, multi-hop reasoning, and up-to-date knowledge. This survey systematically maps the theory and practice of this intersection.

    The covered scenarios include open-domain information access, enterprise knowledge retrieval, conversational search, semantic understanding in recommendation, and end-to-end architectures that couple external knowledge sources with generative models.

    Core Contributions

  • Proposes a unified perspective that brings dispersed related work into a comparable framework.
  • Provides a clear decomposition of method components — representation learning, retrievers, rerankers, planners, generators, feedback mechanisms — for easier engineering adoption.
  • Offers reproducible benchmarks, datasets, and taxonomy tables in its coverage, lowering entry barriers for follow-up research.
  • Discusses interfaces with emerging paradigms such as LLM tool use, reinforcement learning, and multi-agent collaboration, including migration paths from prototypes to industrial systems.
  • Lists open problems: evaluation credibility, latency and cost, hallucination and safety, cross-lingual and multimodal extension.
  • Taxonomy

    | Dimension | Sub-category | Representative approaches | Strengths | Limitations | |---|---|---|---|---| | Modeling paradigm | Discriminative / generative retrieval | Dual-tower, cross-encoder, DSI, GPT indexing | Mature, scalable | Semantic drift, update cost | | LLM integration | RAG / Agent / Tool-use | Retrieval augmentation, search agents, API calls | Flexible, interpretable | Latency, error propagation | | Optimization objective | Relevance / diversity / freshness | Multi-objective LTR, RLHF, online learning | Business-aligned | Scarce annotations | | Evaluation | Offline / online / human | nDCG, MRR, LLM-as-judge, A/B | Comparable | Gap vs. real satisfaction |

    Four Main Technical Lines

  • Dense retrieval: high recall, low latency; suited for first-stage retrieval.
  • Late interaction (e.g., ColBERT): higher accuracy but larger indexes.
  • Generative IR: directly "generates" documents via tokens or docids, simplifying cascades.
  • Agentic search: models search as sequential decision-making, supporting multi-hop reasoning and self-reflection.
  • Timeline of the Field

  • 2019–2021: BERT reranking and DPR establish neural retrieval foundations.
  • 2022–2023: RAG and FreshLLM drive retrieval-generation fusion.
  • 2024: conversational / agentic search and Gen-RecSys surge.
  • 2025–2026: RL-trained search agents, Deep Research, and GraphRAG become new growth fronts.
  • Evaluation Paradigms

    Typical benchmarks and metrics covered include:

  • Datasets: MS MARCO, BEIR, Natural Questions, domain corpora, public recommendation sets.
  • Metrics: nDCG@10, MRR, Recall@k, Hit@k, human preference, task success rate, latency, token cost.
  • Baselines: BM25, dense retrieval, cross-encoder reranking, retrieval-free LLMs, commercial search APIs.
  • Ablations: contribution of retrieval steps, reranking depth, and training data scale.
  • Quantitative results should be verified against the original PDF.

    Key Insights for Search / Rec / Personalization

    1. Architecture: cascaded retrieve–rerank–generate remains mainstream, but the agentic paradigm makes "retrieval count and policy" itself learnable. 2. Data: high-quality instruction data and click/session logs are both critical; synthetic data must guard against knowledge leakage and distribution shift. 3. Evaluation: the gap between offline metrics and online satisfaction is widening; LLM-as-judge needs cross-validation with human evaluation. 4. Product: latency, cost, explainability, and safety are hard constraints for industrial deployment — academic benchmarks alone are insufficient.

    Open Problems and Future Directions

    Authors commonly point to the lack of unified benchmarks, irreproducible private data, LLM evaluation bias, and safety/cost constraints of agentic systems. Future work includes finer-grained process supervision, joint retrieval–reasoning training, enterprise metadata governance, and multimodal and cross-lingual consistency.

    Engineering Checklist

    | Item | Question | Suggestion | |---|---|---| | Data | PII in training/index? Version control? | Partitioned indexes, anonymization, rollback-able embedding versions | | Latency | p99 budget? Retrieval steps? | Cascade + early stop, hot-query caching, async reranking | | Quality | Does offline gain translate to CTR/satisfaction? | Interleaving experiments, human audits, citation checks | | Safety | Does open retrieval introduce poisoning/bias? | Source whitelists, adversarial detection, output filtering | | Cost | Per-query token and GPU footprint? | Route to small models, distillation, hybrid sparse+dense |

    Actionable Recommendations for Readers

    1. Researchers: reproduce core comparisons; check whether statistical significance and compute cost are reported. 2. Engineers: extract pluggable modules (encoders, rerankers, planners) and assess integration cost with existing stacks. 3. Product managers: focus on user-perceivable benefits (latency, answer trustworthiness, multi-turn consistency) rather than offline nDCG alone.

    Related Entries

  • Deep Learning to Rank in Industrial Search Engines, Recommender Systems
  • A Generative Re-ranking Model for List-level Multi-objective Optimization (arXiv 2505.07197)
  • A Thorough Comparison of Cross-Encoders and LLMs for Reranking SPLADE (arXiv 2403.10407)
  • Accelerating Listwise Reranking: Reproducing and Enhancing FIRST, SIGIR
  • Adaptive Neural Ranking Framework: Toward Maximized Business Goal
  • Adaptive Re-ranking

Glossary

| Term | Meaning | |---|---| | IR | Information Retrieval | | RAG | Retrieval-Augmented Generation | | LTR | Learning to Rank | | nDCG | Normalized Discounted Cumulative Gain | | Agentic Search | Search modeled as sequential decision-making and tool invocation | | Gen-IR | Generative Information Retrieval |

Tags

#recommendation-systems#generative-ai#llm#survey#retrieval-augmented-generation#information-retrieval#multi-objective-optimization#arxiv

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178208881