Papers
Topics
Authors
Recent
Search
2000 character limit reached

ORCD: Opposing Reasoning-based Clickbait Detection

Updated 24 January 2026
  • The paper introduces ORCD, a neural framework that employs a novel two-stage SORG method to generate dual (agree/disagree) rationales from LLMs for robust clickbait detection.
  • It uses a tri-encoder BERT architecture combining title-aware and title-free learners with contrastive and classification losses to integrate auxiliary context.
  • Empirical evaluations show ORCD significantly improves accuracy and F1 scores on benchmark datasets, outperforming traditional and prompting-based baselines.

Opposing Reasoning-based Clickbait Detection (ORCD) is a neural framework designed to improve automatic identification of clickbait, leveraging contrastive reasoning from LLMs through a novel two-stage prompt engineering methodology. Unlike prior detection systems that depend on direct judgments or pattern learning over labeled data, ORCD synergistically exploits LLM "sycophancy"—the tendency to generate reasoning that aligns with a target stance—to produce high-fidelity, mutually oppositional rationales for and against the plausibility of news headlines. The resultant model integrates these rationales as auxiliary context, using a multi-view BERT encoding strategy and contrastive learning objectives guided by soft labels derived from LLM-generated credibility ratings. Recent empirical evaluations demonstrate that ORCD achieves state-of-the-art results on multiple benchmark datasets, consistently surpassing both prompting-based and traditional supervised baselines (Zhang et al., 17 Jan 2026).

1. Self-renewal Opposing-stance Reasoning Generation (SORG)

At the core of the ORCD pipeline is the Self-renewal Opposing-stance Reasoning Generation (SORG) framework, which systematizes the elicitation of two high-quality, stance-specific rationales for each candidate headline: one advocating agreement and one advocating disagreement. SORG operates in two major stages:

  • Stage I: Initial Rating The pipeline issues an initial prompt £I(x)\pounds_I(x) to an LLM instructing it to rate the "public agreement" credibility of headline xx on a [0,100][0,100] scale, returning both a scalar rating V1V_1 and an explanation R1R_1. If V1V_1 falls outside the tunable interval [α,100α][\alpha,100-\alpha] (typically α=30\alpha=30), recursive re-rating prompts £Ir\pounds_{Ir} are issued to calibrate the score within bounds, up to MM iterations (xx0).
  • Stage II: Self-Renewal Opposing-stance Reasoning SORG prompts the LLM for an "agree" rationale xx1 (targeting xx2) and a "disagree" rationale xx3 (xx4), each accompanied by a new credibility score. A series of polarity and margin checks enforce constraints: xx5, xx6; xx7, xx8, for typical xx9, [0,100][0,100]0. If unsatisfied, critique and regeneration sub-prompts iteratively refine the rationales until both stances pass all checks or [0,100][0,100]1 max rounds are exhausted. Core prompts are engineered to focus rationales across four aspects: common sense, logic, completeness, and objectivity.

This process ensures the generation of robust, contrastive agreement/disagreement rationales on each headline, each labeled with a continuously valued, LLM-internal credibility score.

2. Model Architecture and Representation

ORCD employs a tri-encoder BERT architecture, consisting of three independently parameterized encoders (e.g., bert-base-uncased):

  • Title Encoder: Processes the input headline [0,100][0,100]2 to produce sequence features [0,100][0,100]3.
  • Agree-Rationale Encoder: Encodes [0,100][0,100]4.
  • Disagree-Rationale Encoder: Encodes [0,100][0,100]5.

Two complementary reasoning branches are constructed:

  • Title-aware Reasoning Learner: Cross-attention modules align title and rationale representations, producing context-sensitive vector pairs [0,100][0,100]6 and [0,100][0,100]7 for agree/disagree rationales, respectively, as well as a pure title embedding [0,100][0,100]8.
  • Title-free Reasoning Learner: Independently summarizes agreement and disagreement rationales as [0,100][0,100]9 and V1V_10 without direct title infusion.

Seven vectors V1V_11 are concatenated and passed through a multilayer perceptron (MLP), yielding class logits for clickbait and non-clickbait categories.

3. Loss Functions and Training Objectives

Model training leverages both contrastive and categorical objectives, tightly integrating LLM-generated soft-labels for supervision. Given LLM-generated V1V_12 and V1V_13 scores (normalized as V1V_14, V1V_15), the losses are constructed as follows:

  • Title-aware Contrastive Loss:

V1V_16

Similar expressions define the reasoning-title branch.

  • Title-free Loss:

V1V_17

  • Total Contrastive Loss:

V1V_18

  • Classification Loss:

V1V_19

Total training loss is R1R_10 with R1R_11.

Soft-label scores R1R_12 directly modulate contrastive weights; no further temperature scaling is applied, as normalization by R1R_13 proved stable in practice. SORG parameters enforce that agreement and disagreement scores are well separated by absolute value and polarity.

4. Hyperparameters, Implementation, and Learning Dynamics

The system is implemented using bert-base-uncased encoders, AdamW optimizer (learning rate R1R_14, L2 regularization R1R_15), dropout of R1R_16 before classification, batch size R1R_17, epoch count R1R_18, cross-attention head count R1R_19, and hidden dimension V1V_10 per vector. Margin-based contrastive loss terms are enforced via V1V_11 construction.

The SORG prompting system uses V1V_12 for thresholding, V1V_13 for rationale margin, V1V_14 for polarity separation, and V1V_15 to V1V_16 self-renewal iterations per rationale, ensuring consistent cue separation and robust rationale quality.

5. Empirical Results and Comparative Evaluation

ORCD was benchmarked on three public datasets: DL-Clickbait (DLC), CD-Clickbait (CDC), and NC-Clickbait (NC). Metrics include accuracy, macro-F1, and clickbait-F1. On DL-Clickbait (DLC), ORCD achieved V1V_17 accuracy (V1V_18 over previous best), macro-F1 V1V_19, and clickbait-F1 [α,100α][\alpha,100-\alpha]0. On CDC: accuracy [α,100α][\alpha,100-\alpha]1, macro-F1 [α,100α][\alpha,100-\alpha]2, clickbait-F1 [α,100α][\alpha,100-\alpha]3, and on NC: accuracy [α,100α][\alpha,100-\alpha]4, macro-F1 [α,100α][\alpha,100-\alpha]5, clickbait-F1 [α,100α][\alpha,100-\alpha]6.

ORCD consistently outperformed zero/few-shot GPT-4o, fine-tuned variants of BERT, RoBERTa, BART, and specialized models such as MCDM, CVM, MUSER, SheepDog, and NRFE-D (Zhang et al., 17 Jan 2026).

6. Ablation Studies and Sycophancy Analysis

Several ablations were performed to isolate component contributions:

Component Disabled Accuracy Δ on DLC
Title-free Learner –3.1%
Title-aware Learner –2.7%
Soft-labeling (V_A,V_D) –1.5%
Both TF & soft-label –5.2%

Increasing SORG self-renewal rounds (sycophancy depth) monotonically improved model F1: [α,100α][\alpha,100-\alpha]7 (1 round), [α,100α][\alpha,100-\alpha]8 (2 rounds), [α,100α][\alpha,100-\alpha]9 (3 rounds). This suggests that iterative, contrastively supervised stance sampling cultivates finer reasoning representations and enhances discriminative capacity.

Case studies reveal that rationales generated via SORG for mutually opposing stances often highlight subtle stylistic and semantic nuances—such as emotional priming, logical incompleteness, or context gaps—that direct, single-pass LLM judgment fails to disentangle.

7. Representative Example and Nuanced Model Output

For a highly clickbaity headline, such as “Her Baby Is Asleep. Now Watch What The Puppy Does… Oh My God! (VIDEO),” SORG generated:

  • Agree rationale: “[This scenario is plausible—pets often surprise with small children—logical, complete, and minimally manipulative.]” (α=30\alpha=300)
  • Disagree rationale: “[The title exaggerates—‘Oh My God!’ is emotional bait, logic leap with no detail, incomplete context.]” (α=30\alpha=301)
  • Direct LLM judgment (w/o SORG): “Highly clickbaity due to vague suspense and emotional cues.”

These paired rationales allow ORCD to attend not only to the superficial framing but also to deeper, context-sensitive cues often missed by direct supervision. A plausible implication is that ORCD learns to encode and contrast both manipulative and legitimate explanatory patterns, improving resilience to adversarial headline construction.


For further methodology and empirical details, see "Acting Flatterers via LLMs Sycophancy: Combating Clickbait with LLMs Opposing-Stance Reasoning" (Zhang et al., 17 Jan 2026).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Opposing Reasoning-based Clickbait Detection (ORCD).