← Home

ICG: Personalised Cover Image Generation with MLLMs

By James Trappett · 29 May 2026

4 min read

Cover images are a surprisingly high-stakes problem in recommender systems. A blurry or contextually mismatched thumbnail can suppress click-through rates even when the underlying content is excellent. Yet most text-to-image pipelines were designed for creative professionals crafting individual prompts, not for platforms generating covers at the scale of millions of items per day. This paper, ICG: Improving Cover Image Generation via MLLM-based Prompting and Personalized Preference Alignment, addresses that gap directly, proposing a framework that sits at the intersection of multimodal language models, diffusion-based image synthesis, and preference-aware reward learning.

The Problem Worth Solving

Existing text-to-image systems like Stable Diffusion, Midjourney, and DALL-E 3 produce impressive results when given well-engineered prompts. The trouble is that prompt engineering does not scale. News aggregators, streaming platforms, and short-video feeds cannot employ a designer per item. Automated MLLM-based prompt generation is the obvious next step, but it introduces its own problems: hallucinated or semantically misaligned prompts, no ground-truth reference images to supervise against, and a complete absence of user personalisation. Prior work in personalised image generation, such as PMG and DiFashion, assumes that the next interacted item's image is a high-quality training target, which is frequently false in practice, and represents user preferences as discrete keywords rather than continuous embeddings, blocking end-to-end gradient flow.

ICG targets all three failure modes simultaneously, which is what makes it worth examining carefully rather than treating as an incremental engineering contribution.

Key Contributions and Architecture

The framework has four tightly coupled components:

Results and What They Actually Show

Experiments run on PixelRec (a large-scale short video cover dataset with 10M interactions) and MovieLens (86K movies, 3.3M ratings). Evaluation covers FID and aesthetic scores for image quality, LPIPS and SSIM for fidelity to reference images, downstream recommendation metrics (Recall@10, NDCG@10), and a human preference study with 100 volunteers rating 120 images.

The ablation results are the most analytically useful part of the paper. Removing CLIP reward degrades both FID and LPIPS noticeably. Removing HPSv2 and PickScore harms aesthetics disproportionately. Removing the personalised reward produces the largest single drop across fidelity and alignment metrics, which supports the authors' central claim that user-specific conditioning is doing real work rather than acting as a cosmetic addition. The visualisation of Harry Potter and Interstellar covers adapted to different user profiles (cartoon versus thriller versus romance styles) is qualitatively convincing, though one would want to see this tested at larger scale before drawing strong conclusions.

The human evaluation, while limited to 120 images, shows ICG scoring highest on a 1-3 Likert scale for visual quality and preference alignment. The authors are appropriately cautious here, noting this measures perceived appeal rather than actual engagement.

Limitations and Open Questions

The paper is unusually candid about its shortcomings, which is worth acknowledging. Three stand out as genuinely important:

There is also a broader question about the reward model's training signal. Pairwise preferences derived from view counts and ratings conflate cover quality with content quality. A highly rated film might get more clicks regardless of its thumbnail. Disentangling cover-specific appeal from content quality in the training signal is a non-trivial problem the paper does not fully address.

The plug-and-play adapter design is genuinely useful for deployment flexibility, and the no-ground-truth-labels optimisation is a real practical advantage over supervised baselines. Whether the personalisation gains hold when user histories are sparse, which is the cold-start regime that matters most commercially, is not explored. That feels like the next important question for this line of work.

Overall, ICG is a well-motivated and technically coherent framework that makes a credible case for integrating continuous MLLM features, user embeddings, and multi-reward supervision into a single end-to-end trainable system. The compatibility experiments across community checkpoints add practical value beyond the benchmark numbers. The gap between offline evaluation and real-world deployment remains the central open question.

Full paper: arxiv.org/abs/2605.27374

Multimodal AIImage GenerationRecommender SystemsDiffusion ModelsPersonalisation

Related Articles

Modular LLM Architecture for Human Value Detection in TextLLMs as Their Own Data Pipelines via Self-Verified DistillationGEM: Hyperspherical Clustering for LLM Data Mixing