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 →

Using large language models to generate and clean training interactions raises e-commerce recommendation recall by 6.02% and gross merchandise value by 1.22%, mainly by improving long-tail item recommendations; the approach boosts I2I systems without changing model architectures.

LLM-I2I: Boost Your Small Item2Item Recommendation Model with Large Language Model
Yinfu Feng, Yanjing Wu, Rong Xiao, Xiaoyi Zen · December 25, 2025
arxiv descriptive medium evidence 8/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. Yinfu Feng unresolved corpus identity
  2. Yanjing Wu unresolved corpus identity
  3. Rong Xiao unresolved corpus identity
  4. Xiaoyi Zen unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Yinfu Feng provider ID
  2. Yanjing Wu provider ID
  3. Rong Xiao provider ID
  4. Xiaoyi Zen provider ID
Leveraging LLMs to synthesize interactions for long-tail items and to filter noisy data improves item-to-item recommendation accuracy and yields production uplifts (RN +6.02%, GMV +1.22%) on a large e-commerce platform.

Citation observations

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

Item-to-Item (I2I) recommendation models are widely used in real-world systems due to their scalability, real-time capabilities, and high recommendation quality. Research to enhance I2I performance focuses on two directions: 1) model-centric approaches, which adopt deeper architectures but risk increased computational costs and deployment complexity, and 2) data-centric methods, which refine training data without altering models, offering cost-effectiveness but struggling with data sparsity and noise. To address these challenges, we propose LLM-I2I, a data-centric framework leveraging Large Language Models (LLMs) to mitigate data quality issues. LLM-I2I includes (1) an LLM-based generator that synthesizes user-item interactions for long-tail items, alleviating data sparsity, and (2) an LLM-based discriminator that filters noisy interactions from real and synthetic data. The refined data is then fused to train I2I models. Evaluated on industry (AEDS) and academic (ARD) datasets, LLM-I2I consistently improves recommendation accuracy, particularly for long-tail items. Deployed on a large-scale cross-border e-commerce platform, it boosts recall number (RN) by 6.02% and gross merchandise value (GMV) by 1.22% over existing I2I models. This work highlights the potential of LLMs in enhancing data-centric recommendation systems without modifying model architectures.

Summary

Main Finding

LLM-I2I — an LLM-enhanced, data-centric pipeline that (1) fine-tunes an LLM to generate synthetic user→item interactions and (2) fine-tunes a second LLM to discriminate/filter those interactions — substantially improves item-to-item (I2I) recommendation quality, particularly for long-tail items. Across academic benchmarks and a large-scale deployment on AliExpress, LLM-I2I improved multiple I2I backbones and produced real-world gains (online: +6.02% recall number (RN) and +1.22% GMV).

Key Points

  • Approach: A data-centric augmentation pipeline composed of two supervised-fine-tuned LLMs:
    • Generator: conditioned on user static info + recent behavior, trained to predict next item(s).
    • Discriminator: conditioned on user and candidate item features, predicts whether a user would interact with the candidate (Yes/No + confidence).
  • Long-tail focus: the generator is trained with a long-tail aware loss (upweighting long-tail items; paper uses α=4.0 vs β=1.0) to encourage generation of rare items.
  • Filtering is critical: discriminator confidence is used to select high-quality synthetic interactions; experiments show higher-confidence synthetic data improves downstream model performance, while excessive low-quality synthetic examples can hurt performance due to distribution drift.
  • Practical recipe:
    • Input to generator: each user’s most recent ten interactions (to respect LLM input limits and emphasize recency).
    • Keep synthesized pairs only if discriminator outputs “Yes” with high confidence (they used threshold of 1.0 in the paper).
    • Merge filtered synthetic data with original interaction data and train existing I2I models (no change to the I2I model architecture required).
  • Works across diverse I2I algorithms: neighborhood (BM25), matrix factorization (BPR), deep retrieval (YouTubeDNN), graph-based (Swing), and LLM-CF style methods — all showed improvements.
  • Real-world deployment: billion-scale industrial dataset (AEDS) and production deployment on AliExpress with measurable business KPIs improved (RN and GMV).

Data & Methods

  • Datasets:
    • ARD (Amazon Review Dataset) — three categories used (Beauty, Sports & Outdoors, Toys & Games). Long-tail = bottom 20% items by purchase frequency.
    • AEDS — proprietary AliExpress dataset: ~209M users, 68M items, 10B interactions; ~16M long-tail items; ~25% items clicked only once.
  • Model training / implementation details:
    • Base LLM: Llama2-7B-Chat (for fair comparison with prior LLM-CF work).
    • Training: full-parameter supervised fine-tuning (SFT) of generator and discriminator on domain interaction data; batch size 16; max input length 1024; learning rate 5e-5; random seed 42.
    • Acceleration: DeepSpeed ZeRO-2 and FlashAttention used for training speed/memory.
  • Objectives:
    • Generator: next-item prediction loss weighted higher for long-tail targets (wt+1 ui = α if target is long-tail else β).
    • Discriminator: binary classification loss trained on observed positives (real user interactions) and randomly sampled negatives; outputs label + confidence.
  • Augmentation procedure:
    • For each user, use recent 10 items as prompt; generator predicts candidate item IDs.
    • Discriminator evaluates each candidate; keep those labeled positive with high confidence.
    • Combine filtered synthetic interactions with original data for I2I model training.
  • Evaluation:
    • Offline metrics: Recall@K and similar retrieval metrics (shown to improve as discriminator confidence increases).
    • Online metrics (production): recall number (RN) and gross merchandise value (GMV) uplift reported from A/B test of deployed system.
  • Empirical observations:
    • Increasing amount of synthetic data helps up to a point, then degrades performance (distribution shift).
    • Filtering by discriminator confidence materially improves downstream I2I results.
    • The method is particularly effective for long-tail items (reduces sparsity problems).

Implications for AI Economics

  • Cost-effectiveness vs model-centric upgrades:
    • Data-centric approach preserves existing small/fast I2I models and online serving infrastructure (inverted index, top-K tables), avoiding the CPU/GPU and latency costs of deploying larger or deeper models online.
    • Offline costs: SFT of two LLMs and large-scale generation/discrimination still require compute, but these are offline batch operations and can be scheduled/optimized — trade-off is favorable when modest online model changes are costly.
  • Revenue and market structure effects:
    • Uplifts to recall and GMV indicate direct revenue benefits; improved discovery for long-tail items can increase sales diversity and flatten concentration on head items, with implications for platform-side supplier competition, inventory allocation, and long-tail supplier welfare.
  • Allocation of compute / return on investment:
    • Platforms should weigh offline LLM fine-tuning and synthetic-data-generation costs versus marginal GMV and conversion lift — the paper’s reported +1.22% GMV is an example point estimate for a large cross-border marketplace.
  • Risks and governance:
    • Synthetic data can amplify biases or introduce artifacts — the discriminator mitigates but does not eliminate this risk; monitoring for fairness, category bias, supplier over- or under-promotion is needed.
    • Privacy and compliance: synthetic generation uses user behavior traces; ensure compliance with data-use policies and user consent frameworks.
    • Hallucination and semantic drift: LLMs may fabricate items or misrepresent item features; strong discriminator thresholds and sanity checks on item IDs/availability are important.
  • Scalability and future directions:
    • Potential to use smaller/efficient LLMs or retrieval-augmented generation to reduce offline cost while preserving benefits.
    • Joint optimization: dynamically tune the amount of synthetic data per user segment and discriminator confidence threshold for cost-benefit maximization.
    • Broader economic impacts: better tail item recommendations can change supplier pricing/promotion strategies and platform commission structures; platforms may invest more in data-centric augmentation rather than costly model upgrades.
  • Suggested operational evaluation:
    • Conduct a formal cost-benefit analysis (compute + engineering vs incremental GMV/RN), segment-level A/B tests (head vs tail), and audits for bias and supplier fairness before wide roll-out.

Assessment

Paper Typedescriptive Evidence Strengthmedium — Evidence includes consistent offline improvements on two datasets (one industry, one academic) and reported positive production metrics (RN +6.02%, GMV +1.22%), which directly link the method to economic outcomes; however, causal attribution is unclear (no explicit randomized experiment reported) and details on robustness checks, variance, and long-term impacts are limited. Methods Rigormedium — The paper proposes a plausible, well-motivated data-centric pipeline (LLM-based generator for long-tail items and LLM-based discriminator for noise filtering) and evaluates it on multiple datasets including real production deployment, but appears to lack full transparency on LLM prompts, model sizes, synthetic data generation procedures, baseline comparisons, and whether deployment results come from controlled experiments; ablation and sensitivity analyses are not detailed in the summary. SampleEvaluation on two datasets: an industry dataset (AEDS) and an academic dataset (ARD) comprising user-item interactions, with additional production data from a large cross-border e-commerce platform used for deployment metrics; focus is on long-tail items, but exact sample sizes, time windows, and user/item distributions are not specified in the summary. Themesadoption productivity IdentificationNo formal causal identification strategy described; performance claims are supported by offline evaluations on two datasets (industry AEDS and academic ARD) and production deployment results reporting uplifts in recall (RN) and gross merchandise value (GMV); it is not specified whether production metrics derive from randomized A/B tests or observational comparisons. GeneralizabilityEvaluated primarily on e-commerce item-to-item recommendation; results may not generalize to non-commerce domains (news, streaming, social)., Focus on long-tail items may limit applicability to user cold-start problems or user-side personalization tasks., Performance depends on LLM capabilities, prompting and filtering strategies; results may vary with different LLMs (size, architecture, proprietary vs open)., Production uplift reported for one cross-border platform; platform-specific factors (catalog structure, user behavior, localization) may drive effects., Computational cost and latency/training constraints of using LLMs at scale could limit adoption in resource-constrained settings.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Item-to-Item (I2I) recommendation models are widely used in real-world systems due to their scalability, real-time capabilities, and high recommendation quality. Organizational Efficiency positive prevalence and desirability of I2I models (scalability, real-time capability, recommendation quality)
Reading fidelity high
Study strength medium
not reported
0.18
Model-centric approaches adopt deeper architectures but risk increased computational costs and deployment complexity. Organizational Efficiency negative computational costs and deployment complexity from deeper architectures
Reading fidelity high
Study strength medium
not reported
0.18
Data-centric methods refine training data without altering models, offering cost-effectiveness but struggling with data sparsity and noise. Training Effectiveness mixed cost-effectiveness and issues (data sparsity, noise) of data-centric methods
Reading fidelity high
Study strength medium
not reported
0.18
We propose LLM-I2I, a data-centric framework leveraging Large Language Models (LLMs) to mitigate data quality issues for I2I recommendation. Training Effectiveness positive ability to mitigate data quality issues for recommendation training data
Reading fidelity high
Study strength medium
not reported
0.18
LLM-I2I includes an LLM-based generator that synthesizes user-item interactions for long-tail items, alleviating data sparsity. Training Effectiveness positive reduction of data sparsity / synthetic user-item interactions for long-tail items
Reading fidelity high
Study strength medium
not reported
0.18
LLM-I2I includes an LLM-based discriminator that filters noisy interactions from real and synthetic data. Training Effectiveness positive noise reduction in training interactions
Reading fidelity high
Study strength medium
not reported
0.18
The refined data is then fused to train I2I models and LLM-I2I consistently improves recommendation accuracy, particularly for long-tail items, on industry (AEDS) and academic (ARD) datasets. Output Quality positive recommendation accuracy (overall and for long-tail items)
Reading fidelity high
Study strength medium
not reported
0.18
Deployed on a large-scale cross-border e-commerce platform, LLM-I2I boosts recall number (RN) by 6.02% over existing I2I models. Output Quality positive recall number (RN)
Reading fidelity high
Study strength high
6.02% increase
0.3
Deployed on a large-scale cross-border e-commerce platform, LLM-I2I increases gross merchandise value (GMV) by 1.22% over existing I2I models. Firm Revenue positive gross merchandise value (GMV)
Reading fidelity high
Study strength high
1.22% increase
0.3
This work highlights the potential of LLMs in enhancing data-centric recommendation systems without modifying model architectures. Organizational Efficiency positive feasibility and effectiveness of using LLMs for data-centric improvement without changing model architectures
Reading fidelity high
Study strength medium
not reported
0.18

Notes