SYNTHESIS NOTE
Language, Text, and Discourse Recommender Systems Conversational AI and Personalization

Why do LLMs generate polite reviews even when users hated products?

Large language models trained with RLHF develop a politeness bias that overrides negative sentiment in review generation. Understanding this bias and how to counteract it is crucial for creating accurate, user-aligned review systems.

Synthesis note · 2026-05-03 · sourced from Recommenders Personalized
How do recommendation feeds shape what people see and believe? Why do LLMs fail at understanding what remains unsaid?

Large language models trained with RLHF or instruction tuning develop a documented "polite" tendency — they soften criticism, cushion negative judgments, and avoid blunt statements. This is generally desirable in conversation but disastrous in a personalized review-generation task where users are dissatisfied with many items and the corresponding generated review needs to reflect that dissatisfaction. A polite-by-default LLM produces positive reviews for things the user hated, which is both inaccurate and unhelpful for explanation purposes.

Review-LLM diagnoses two problems. First, the LLM doesn't know the user's review style — pretrained at corpus level, it generates generic reviews rather than reviews that match the user's voice. Second, even given the right style, the politeness bias prevents the model from producing negative reviews even when negative is correct.

The solution combines three input components. The prompt aggregates the user's behavioral history — item titles, the reviews the user wrote for each, and the ratings given. This teaches the model the user's review style from semantically rich text. The prompt also includes the rating for the target item, which functions as a satisfaction indicator: rating 5 → positive review, rating 1 → negative review. The model has explicit signal about the sentiment direction. Then the model is supervised fine-tuned on the user's actual reviews to internalize the style and override politeness defaults.

The general lesson: LLM behavioral defaults installed during alignment training are sticky. They survive prompt engineering and require fine-tuning plus structured prompt context to override. For tasks where the alignment-trained behavior is the wrong default (review generation, candid feedback, debate, criticism), the system architecture must explicitly counter the bias rather than hoping prompt phrasing alone redirects it.

Inquiring lines that use this note as a source 12

This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.

Related concepts in this collection 4

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
16 direct connections · 154 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

LLM review generation defaults to politeness — overriding it requires user behavior aggregation and rating signals in the prompt