LLMs for Fact-Checking and Misinformation
1. The Role of LLMs in Combating Misinformation
The Role of LLMs in Combating Misinformation
Mechanisms for Fact-Checking
Large Language Models (LLMs) leverage their vast pretrained knowledge bases to identify inconsistencies, contradictions, and unsupported claims in textual content. Given an input claim C, the model retrieves relevant evidence E from its training corpus or external databases, then computes a probability score P(C|E) representing the claim's veracity. This is often implemented via a transformer-based scoring function:
where W and b are learned parameters, and the transformer encodes the concatenated claim-evidence pair. Advanced implementations use retrieval-augmented generation (RAG) architectures to dynamically fetch E from up-to-date knowledge sources.
Challenges in Misinformation Detection
LLMs face three fundamental limitations when debunking false claims:
- Training data recency: Static pretraining corpora lack knowledge of events after their cutoff date
- Contextual nuance: Satire, opinion, and emerging scientific consensus require sophisticated contextual understanding
- Adversarial robustness: Deliberately engineered false claims can exploit model biases
Recent work addresses these through hybrid architectures. For example, the FactScore metric decomposes verification into:
where the retrieval component ensures evidence freshness and the reasoning component evaluates logical consistency.
Case Study: Real-Time Claim Verification
In operational systems like Google's Fact Check Tools, LLMs process claims through a multi-stage pipeline:
- Semantic search retrieves potentially relevant fact-checks
- A BERT-based classifier identifies matching claims with >90% precision
- An entailment model determines if existing fact-checks refute the new claim
- For novel claims, the system flags them for human review
This hybrid approach achieves 85% accuracy on the FEVER benchmark while maintaining real-time performance constraints. The system's effectiveness stems from its hierarchical attention mechanism:
where q, k represent learned query and key vectors that identify the most salient evidence components.
Emerging Techniques
Cutting-edge research focuses on:
- Contrastive learning: Training models to distinguish subtle differences between factual and misleading statements
- Graph-based reasoning: Building knowledge graphs that track claim provenance and evolution
- Uncertainty quantification: Providing confidence intervals for model predictions
For instance, the DeClarE framework represents claims and evidence as nodes in a bipartite graph, then applies graph neural networks to propagate belief scores:
where h represents node embeddings at layer l, and N(v) denotes neighboring nodes. This approach improves performance on complex claims requiring multi-hop reasoning by 22% over baseline methods.

Key Challenges in Automated Fact-Checking
1. Semantic Ambiguity and Contextual Nuance
Large language models (LLMs) struggle with disambiguating statements that rely on implicit context or cultural references. For instance, the claim "The economy grew by 3% last year" may be factually correct but misleading if omitting that inflation was 5%. LLMs often fail to detect such omissions because they lack grounded world knowledge beyond statistical patterns in training data. This is formalized by the semantic gap between surface-level truth and pragmatic intent:
where K represents background knowledge and C the space of contextual frames. Current models approximate this through attention mechanisms but remain brittle to adversarial rephrasing.
2. Temporal Dynamics of Truth
Factual veracity often depends on temporal scope. A statement like "COVID-19 has no effective treatments" was true in March 2020 but false by June 2020. LLMs typically encode knowledge as static snapshots from training data timestamps. The temporal decay of factual accuracy follows an exponential curve:
where λ depends on the domain (politics: λ≈0.3/day, science: λ≈0.1/day). Continuous retrieval-augmented generation (RAG) systems partially mitigate this but introduce latency-cost tradeoffs.
3. Multimodal Verification
Modern misinformation often combines text with manipulated images/videos. While vision-language models like CLIP can align cross-modal representations:
they remain vulnerable to subtle adversarial perturbations. The semantic consistency paradox occurs when visual and textual elements are individually plausible but jointly improbable (e.g., deepfakes with mismatched shadows).
4. Scalability vs. Precision Tradeoffs
Full-document verification requires O(n²) pairwise claim-evidence comparisons when using transformer attention. Approximate methods like:
- Hierarchical attention windows (reducing to O(n log n))
- Claim clustering via BERTopic
- Dynamic early exiting
inevitably sacrifice recall for throughput. The precision-recall frontier follows a power law scaling with compute budget B:
5. Adversarial Robustness
State-of-the-art fact-checking systems exhibit an average 47% performance drop under adversarial attacks like:
- Lexical perturbations: Synonym substitutions preserving truth conditions
- Structural attacks: Relative clause insertions that confuse dependency parsers
- Red herrings: Factually true but irrelevant supporting statements
Defense mechanisms like certified robustness training increase inference costs by 3-5× while providing only marginal improvements on out-of-distribution data.
6. Provenance Tracking
Authentic fact-checking requires verifiable attribution chains. Current approaches use:
- Knowledge graph embeddings with temporal edges
- Merkle-proof style cryptographic hashing of sources
- Differential privacy for source protection
However, these methods struggle with provenance decay - only 28% of web citations remain accessible after 1 year according to HTTP archival studies.

1.3 Advantages of LLMs Over Traditional Methods
Large Language Models (LLMs) exhibit several key advantages over traditional fact-checking and misinformation detection methods, primarily due to their ability to process and analyze vast amounts of unstructured data with nuanced contextual understanding. Traditional methods often rely on rule-based systems, manual verification, or shallow machine learning models, which are limited in scalability and adaptability.
Scalability and Real-Time Processing
Traditional fact-checking methods require extensive human effort to verify claims against trusted sources, making them inherently slow and unscalable. LLMs, however, can process millions of documents in real-time, identifying inconsistencies, cross-referencing sources, and flagging potential misinformation with minimal latency. The computational efficiency of transformer-based architectures allows LLMs to handle high-throughput data streams, a critical requirement in today's fast-paced information ecosystem.
Contextual and Semantic Understanding
Unlike keyword-based or statistical approaches, LLMs leverage deep semantic embeddings to understand context, sarcasm, and implicit meaning. Traditional methods often fail to detect misinformation when it is phrased ambiguously or relies on subtle linguistic cues. For instance, an LLM can distinguish between:
- Literal falsehoods (e.g., "The Earth is flat")
- Misleading framing (e.g., "Vaccines cause autism," which misrepresents correlation as causation)
- Out-of-context quotes (e.g., selectively edited statements)
This capability stems from the self-attention mechanism in transformers, which models long-range dependencies and contextual relationships:
where Q, K, and V represent queries, keys, and values, respectively, and dk is the dimensionality of the key vectors.
Adaptability to Evolving Misinformation Tactics
Misinformation campaigns frequently adapt to evade detection, such as using novel phrasing or hybrid true/false statements. Rule-based systems require constant updates to their heuristic rules, whereas LLMs can generalize from their training data to identify new variants of misinformation. Fine-tuning on domain-specific datasets (e.g., medical disinformation or political propaganda) further enhances their adaptability.
Multimodal Capabilities
Advanced LLMs integrate text, image, and audio processing, enabling them to fact-check multimodal content (e.g., memes with misleading captions or deepfake videos). Traditional methods lack this cross-modal reasoning ability. For example, an LLM can analyze:
- Textual claims in social media posts
- OCR-extracted text from images
- Transcripts of audio/video content
Reduction in Human Bias
Human fact-checkers are susceptible to cognitive biases, whereas LLMs—when properly trained—can apply consistent criteria across diverse topics. However, this advantage is contingent on mitigating biases in the training data through techniques like:
- Debiasing embeddings
- Adversarial training
- Fairness-aware loss functions
The probabilistic nature of LLMs also allows for confidence scoring, providing transparency in uncertainty estimates:
where s(x) is the model's score for input x belonging to the misinformation class.
2. How LLMs Process and Verify Information
2.1 How LLMs Process and Verify Information
Information Processing in LLMs
Large Language Models (LLMs) process information through a series of transformer-based neural network layers that encode, contextualize, and generate text. The core mechanism involves:
- Tokenization: Input text is split into subword tokens using algorithms like Byte Pair Encoding (BPE).
- Embedding: Tokens are mapped to high-dimensional vectors (e.g., 768D in BERT, 12288D in GPT-4).
- Attention Mechanisms: Multi-head self-attention computes weighted relationships between tokens.
Where Q (queries), K (keys), and V (values) are learned matrices, and dk is the dimension of keys.
Fact Verification Mechanisms
LLMs verify claims through three primary methods:
1. Internal Knowledge Retrieval
The model accesses parametric knowledge stored in its weights during pretraining. For a claim C, the probability P(C|θ) is estimated via:
where wi are tokens and θ represents model parameters.
2. External Knowledge Grounding
Advanced systems like RAG (Retrieval-Augmented Generation) combine parametric knowledge with real-time document retrieval:
- Dense Retrieval: Encodes queries and documents into vector space using models like DPR
- Re-ranking: Applies cross-encoders (e.g., ANCE) to improve precision
3. Logical Consistency Checking
Models employ chain-of-thought reasoning to validate claims through deductive steps. For example, verifying "Paris is the capital of France" involves:
- Retrieving country-capital relationships
- Checking temporal validity (no recent changes)
- Cross-referencing with authoritative sources
Confidence Calibration
Modern LLMs output confidence scores using:
where p is the probability distribution over vocabulary V. Values closer to 1 indicate higher certainty.
Case Study: COVID-19 Misinformation Detection
In a 2023 study, GPT-4 achieved 89.2% accuracy on the FEVER dataset by:
- Decomposing claims into atomic propositions
- Retrieving WHO guidelines as evidence
- Applying biomedical knowledge from PubMed
Limitations and Challenges
Key verification challenges include:
- Hallucinations: 15-20% of generated statements may be unsupported (Azaria & Mitchell, 2023)
- Temporal Drift: Static training data becomes outdated
- Adversarial Prompts: Carefully crafted inputs can bypass safeguards

Training Data Requirements for Reliable Fact-Checking
The efficacy of large language models (LLMs) in fact-checking hinges on the quality, diversity, and representativeness of their training data. Unlike general-purpose language models, fact-checking LLMs require meticulously curated datasets that minimize bias, maximize factual accuracy, and cover a broad spectrum of domains and perspectives.
Data Quality and Source Verification
High-quality fact-checking datasets must prioritize verifiable sources, such as peer-reviewed journals, authoritative databases (e.g., WHO reports, UN datasets), and fact-checked news from organizations like Snopes or PolitiFact. The dataset D should satisfy:
where Strusted is the set of pre-vetted sources, and N is the total number of data points. A score close to 1 indicates high verifiability.
Bias Mitigation through Data Balancing
Fact-checking models must avoid amplifying biases present in training data. For a given claim category c (e.g., political, scientific), the dataset should balance supporting and refuting evidence proportionally to ground-truth prevalence. The bias metric β for a dataset can be formalized as:
where Psupport and Prefute are the true probabilities derived from expert-annotated benchmarks.
Temporal Dynamics and Concept Drift
Factual correctness is time-sensitive. Training data must incorporate temporal metadata to handle concept drift (e.g., evolving medical guidelines). A sliding window approach ensures relevance:
where Δtthreshold is domain-dependent (e.g., 1 year for politics, 5 years for historical facts).
Multilingual and Cross-Cultural Coverage
Effective fact-checking requires multilingual datasets with cultural context. The coverage metric γ for language l is:
Reference values can be derived from resources like Wikipedia’s language editions or UNESCO reports.
Practical Implementation: Dataset Construction Pipeline
Building a fact-checking dataset involves:
- Source Crawling: Scraping trusted repositories (e.g., PubMed, official statistics) with strict inclusion criteria.
- Expert Annotation: Dual-annotator verification with adjudication for disputed labels.
- Debiasing: Reweighting or resampling to align with ground-truth distributions.
- Versioning: Timestamped updates to reflect new evidence.
Case studies show that models trained on datasets like FEVER (Fact Extraction and VERification) achieve 65-75% accuracy, while proprietary systems (e.g., Meta’s LIAMA) reach 80%+ by incorporating real-time fact-checking partnerships.
Fine-Tuning LLMs for Domain-Specific Accuracy
Fine-tuning large language models (LLMs) for domain-specific fact-checking requires addressing two key challenges: knowledge grounding and hallucination suppression. Pre-trained LLMs exhibit strong generalization but often lack precision in specialized domains like medicine, law, or scientific research. The fine-tuning process must adapt both the model's parametric knowledge and its reasoning mechanisms to align with verifiable domain expertise.
Architectural Modifications for Fact-Checking
Standard fine-tuning adjusts only the output layers, but domain-specific accuracy demands deeper architectural changes:
- Retrieval-Augmented Generation (RAG) integration to ground responses in external knowledge bases
- Addition of verification heads that output confidence scores alongside predictions
- Implementation of chain-of-verification layers that cross-check intermediate reasoning steps
The verification head can be formulated as:
where hL is the final hidden state, Wv and bv are learned parameters, and σ is the sigmoid activation producing a confidence score between 0 and 1.
Training Objectives for Accuracy
Beyond standard cross-entropy loss, effective fine-tuning incorporates:
The verification loss ℒverif penalizes incorrect high-confidence predictions:
where 𝕀 is the indicator function. The consistency loss ℒconsist enforces agreement between the model's predictions and retrieved evidence:
for retrieved evidence e.
Evidence Integration Techniques
Effective domain adaptation requires sophisticated evidence processing:
- Dense passage retrieval with domain-specific encoders
- Dynamic attention routing between parametric knowledge and external sources
- Contradiction detection modules that flag inconsistencies
The attention mechanism for evidence integration computes:
where eK and eE are learned embeddings for knowledge base entries.
Evaluation Metrics
Standard NLP metrics fail to capture fact-checking performance. Essential measures include:
- Verification recall: Percentage of supported claims correctly identified
- Hallucination rate: Unsupported statements presented as fact
- Evidence precision: Relevance of cited sources to claims
The hallucination rate H is computed as:
Practical Implementation
For medical fact-checking, the fine-tuning pipeline might involve:
from transformers import AutoModelForSequenceClassification
model = AutoModelForSequenceClassification.from_pretrained(
"bert-base-uncased",
num_labels=2,
problem_type="multi_label_classification"
)
# Add verification head
model.classifier = nn.Sequential(
nn.Linear(model.config.hidden_size, 256),
nn.ReLU(),
nn.Linear(256, 2), # prediction
nn.Linear(256, 1) # confidence
)

3. Designing Effective Prompts for Verification
3.1 Designing Effective Prompts for Verification
Effective prompt design is critical for leveraging large language models (LLMs) in fact-checking applications. Unlike general-purpose queries, verification prompts must minimize ambiguity, enforce structured reasoning, and explicitly request evidence-backed responses. The following principles optimize LLM performance for misinformation detection:
Structured Verification Prompts
Verification prompts should decompose the task into discrete steps, forcing the model to evaluate claims systematically. A well-designed template includes:
- Claim Identification: Explicitly restate the claim to ensure the model processes the correct input.
- Source Request: Demand attribution to authoritative references (e.g., "Provide peer-reviewed studies or official reports supporting this claim").
- Confidence Calibration: Require probability estimates (e.g., "Rate the claim's validity from 0-100% based on available evidence").
- Contradiction Check: Explicitly ask for opposing evidence (e.g., "List credible sources that dispute this claim").
Mathematical Framework for Prompt Optimization
The effectiveness of a verification prompt can be modeled as an information retrieval problem. Let R be the set of relevant evidence for claim C, and M be the LLM's response. The optimal prompt maximizes the expected precision:
where M(p) denotes the model's output given prompt p. This involves:
- Term Specificity: Using domain-specific terminology reduces semantic drift (e.g., "Search for RCTs published after 2015" outperforms "Find medical studies").
- Constraint Injection: Adding logical constraints (e.g., "If no consensus exists, return 'Inconclusive Evidence'") prevents hallucinated certainty.
Case Study: COVID-19 Misinformation Detection
During the pandemic, LLMs were deployed to combat vaccine misinformation. Effective prompts included:
- "Compare the claim 'COVID vaccines alter DNA' with findings from the CDC, WHO, and Nature journal articles published in 2021-2023. Provide exact quotations with DOI links."
- "Calculate the percentage of FDA-approved vaccines that underwent Phase III trials matching this claim's description."
Benchmarks showed these structured prompts improved evidence retrieval accuracy by 42% compared to open-ended queries in a controlled study (arXiv:2305.01776).
Advanced Techniques
For complex claims, chain-of-thought prompting significantly enhances verification reliability:
where each intermediate reasoning step is explicitly prompted (e.g., "First, identify the claim's domain. Second, list verification methods for that domain..."). This approach reduces compounding errors in multi-fact verification.
Temperature scaling (τ ≈ 0.3) and nucleus sampling (p = 0.9) further improve deterministic output quality for reproducible fact-checks. When combined with retrieval-augmented generation (RAG), this achieves 91% precision in political claim verification (ACL 2023 findings).
3.2 Integrating External Knowledge Sources
Large language models (LLMs) trained solely on their parametric knowledge suffer from factual decay and lack access to real-time information. Augmenting them with external knowledge sources addresses these limitations through retrieval-augmented generation (RAG) architectures. The integration process involves three key components: knowledge retrieval, evidence fusion, and response generation.
Knowledge Retrieval Mechanisms
Given a query q, the system retrieves relevant documents D = {d₁, d₂, ..., dₖ} from an external corpus using dense vector similarity search. The retrieval score between query and document vectors is computed as:
where q and dᵢ are encoded using transformer-based embedders like Contriever or ANCE. For temporal-sensitive queries, the system filters documents by timestamp metadata before ranking.
Evidence Fusion Strategies
The model must reconcile potentially conflicting information between its parametric knowledge and retrieved evidence. Let pθ(y|x) be the base LLM's distribution and pD(y|x) be the distribution induced by external documents. The fused probability becomes:
where λ is a learned interpolation weight and wd are attention-based document weights. Advanced implementations use cross-attention between retrieved chunks and the decoder's hidden states.
Architectural Implementations
Modern systems employ one of three paradigms:
- Early fusion: Concatenates retrieved documents with input prompt before generation
- Late fusion: Generates multiple candidate responses then selects based on evidence alignment
- Iterative retrieval: Dynamically fetches additional documents during generation
The Atlas architecture demonstrates state-of-the-art performance by fine-tuning the LLM on retrieval-augmented examples while jointly training the retriever. Its loss function combines standard language modeling with a retrieval alignment term:
Real-World Deployment Challenges
Production systems must handle:
- Latency constraints (sub-500ms for web applications)
- Document freshness (hourly updates for news verification)
- Source reliability scoring (trustworthiness estimation)
The New York Times uses a hybrid system combining GPT-4 with proprietary search over their article archive, achieving 92% factual accuracy in internal tests compared to 78% for standalone GPT-4 on current events verification.

3.3 Evaluating Model Performance and Reliability
Assessing the reliability of large language models (LLMs) in fact-checking requires rigorous evaluation metrics that account for both accuracy and robustness. Traditional classification metrics like precision, recall, and F1-score are insufficient for nuanced misinformation detection, as they fail to capture contextual fidelity or adversarial susceptibility. Instead, a multi-dimensional evaluation framework is necessary.
Confidence Calibration and Uncertainty Estimation
LLMs often generate overconfident predictions, necessitating calibration to align confidence scores with true probabilities. Expected Calibration Error (ECE) quantifies this misalignment by binning predictions by confidence and measuring the discrepancy between accuracy and confidence within each bin:
where \( B_m \) is the \( m \)-th bin, \( n \) is the total samples, and \( \text{acc}(B_m) \), \( \text{conf}(B_m) \) are the accuracy and average confidence of the bin. Temperature scaling and Platt scaling are common post-hoc calibration methods.
Adversarial Robustness Testing
Models must be evaluated against adversarial perturbations designed to expose fragility. For textual inputs, this includes:
- Paraphrase attacks: Rewriting claims semantically equivalently but with altered syntax.
- Negation injections: Inserting negations to flip the truth value (e.g., "The Earth is not flat").
- Contextual distractions: Adding irrelevant but plausible-sounding details to mislead the model.
Robustness is measured via the adversarial success rate (ASR), the fraction of perturbations that flip the model’s output:
where \( f \) is the model, \( x_i \) the original input, and \( \delta_i \) the perturbation.
Factual Consistency Metrics
For fact-checking, hallucination detection is critical. The Factual Score decomposes into:
where \( R \) is the set of generated claims, \( D \) the document, \( \text{PMI} \) the pointwise mutual information between claim and context, and \( \text{Verif} \) a verification function against a knowledge source \( S \).
Bias and Fairness Audits
LLMs may propagate biases present in training data. Evaluation involves:
- Demographic parity: Measure disparity in model outputs across demographic groups for identical factual inputs.
- Counterfactual fairness: Assess if outputs change when sensitive attributes (e.g., gender, race) are perturbed in otherwise identical contexts.
The Bias Amplification Factor (BAF) quantifies this:
Values >1 indicate the model amplifies existing biases.
Human-AI Agreement Analysis
Human evaluation remains indispensable. Cohen’s \( \kappa \) measures inter-annotator agreement between the model and human experts:
where \( p_o \) is observed agreement and \( p_e \) chance agreement. Models with \( \kappa > 0.8 \) are considered highly reliable.

4. Bias and Fairness in LLM Fact-Checking
Bias and Fairness in LLM Fact-Checking
Sources of Bias in LLM Fact-Checking
Large language models inherit biases from multiple sources, primarily their training data and architectural choices. The pre-training corpus often contains societal biases present in web text, while fine-tuning datasets may reflect annotator subjectivity. Three key bias categories emerge:
- Data selection bias: Underrepresentation of certain demographics or perspectives in training data
- Labeling bias: Systematic errors in human-annotated fact-checking datasets
- Algorithmic bias: Amplification of biases through model architecture and optimization
Quantifying Bias in Fact-Checking Outputs
Measuring bias requires formal statistical frameworks. For a fact-checking model f evaluating claims x ∈ X across demographic groups G, we define group-wise accuracy disparity:
where ŷ is the model prediction and y is the ground truth. Practical implementations often use bootstrap sampling to estimate confidence intervals for these metrics.
Mitigation Strategies
Pre-processing Approaches
Data augmentation techniques can balance representation across groups. For text data, this involves:
- Oversampling underrepresented perspectives
- Controlled generation of counterfactual examples
- Debiasing word embeddings before model training
In-processing Techniques
Architectural modifications include adversarial debiasing, where an auxiliary network penalizes the model for making predictions correlated with sensitive attributes. The objective becomes:
where λ controls the trade-off between accuracy and fairness.
Post-hoc Calibration
Platt scaling can adjust model outputs per demographic group:
where wg and bg are group-specific parameters learned on a validation set.
Case Study: Political Fact-Checking
A 2023 study evaluated GPT-4's fact-checking across 10,000 political claims, finding a 12.7% accuracy gap between left- and right-leaning statements. The researchers mitigated this by:
- Augmenting training data with balanced political perspectives
- Implementing gradient reversal on political leaning classifiers
- Calibrating confidence thresholds separately for different topics
This reduced the accuracy disparity to 3.2% while maintaining overall accuracy.
Evaluation Metrics Beyond Accuracy
Comprehensive fairness assessment requires multiple metrics:
Trade-offs between these metrics often require Pareto optimization during model development.
Emerging Challenges
Current research frontiers include:
- Multimodal fact-checking bias (text + images/video)
- Temporal bias in evolving claims
- Cross-cultural fairness in multilingual models
- Adversarial attacks exploiting bias vulnerabilities

Handling Ambiguous or Contested Information
Probabilistic Confidence Scoring
When fact-checking ambiguous claims, LLMs must quantify uncertainty through probabilistic confidence scores. Given an input claim x, the model outputs both a veracity prediction y ∈ {True, False, Unverifiable} and a confidence score p ∈ [0,1]. The confidence is computed as:
where fθ represents the model's logits. For contested claims with conflicting evidence {e1, ..., en}, we compute a weighted confidence:
The weights wi incorporate source reliability metrics and temporal decay factors for time-sensitive claims.
Evidence Aggregation Frameworks
Multi-source verification requires evidence aggregation. Let D be a corpus of documents and s(d) a source reliability score. The evidential support for claim c is:
where sim(·) measures semantic similarity. Contested claims exhibit bimodal distributions in S(c), requiring conflict detection:
Handling Temporal Drift
For time-varying claims (e.g., "X is the current president"), we model truth as a function y(t). The temporal confidence at time t is:
where λ is a domain-specific decay rate. Change points are detected using CUSUM control charts on claim embeddings over time.
Controversy-Aware Training
Standard fact-checking datasets lack contested examples. We augment training with:
- Adversarial examples with conflicting evidence
- Synthetic claims with controlled ambiguity levels
- Multi-perspective annotations from diverse experts
The loss function incorporates controversy awareness:
where q represents the human disagreement distribution.
Implementation Considerations
Production systems require:
- Real-time evidence retrieval with freshness guarantees
- Differentiated UI presentation for contested claims
- Audit trails showing evidence provenance
- Fallback mechanisms for high-ambiguity cases

4.3 User Trust and Transparency in Automated Systems
Trust Calibration in LLM-Based Fact-Checking
Trust in automated fact-checking systems depends on the model's ability to provide accurate, verifiable, and contextually appropriate responses. A key challenge is trust calibration, ensuring that the system's confidence scores align with its actual accuracy. For LLMs, this involves quantifying uncertainty through techniques like Bayesian neural networks or Monte Carlo dropout. The probability of a correct response \( P(y|x) \) can be modeled as:
where \( \theta \) represents model parameters and \( D \) the training data. Miscalibration occurs when the model's confidence \( \hat{P}(y|x) \) deviates from \( P(y|x) \), leading to overconfident errors.
Explainability and Attribution
Transparency requires explainability mechanisms that reveal the model's reasoning process. Attention visualization and feature attribution (e.g., SHAP values, LIME) help users understand which inputs influenced the output. For a given input \( x \) and output \( y \), SHAP values \( \phi_i \) decompose the prediction:
where \( N \) is the set of all features and \( f \) the model's prediction function. This allows users to audit claims like "This statement was flagged as false due to conflicting data from Reuters (2023) and WHO reports."
Human-AI Collaboration Frameworks
Effective systems implement revision interfaces where users can challenge model outputs and provide feedback. A confidence thresholding approach routes low-confidence predictions (\( \hat{P}(y|x) < \tau \)) to human reviewers. The optimal threshold \( \tau^* \) minimizes combined error costs:
where \( C_h \) is the cost of human review and \( C_m \) the cost of machine errors. Case studies show Wikipedia's ORES system achieves 92% accuracy with \( \tau = 0.7 \) while reducing human workload by 40%.
Bias and Fairness Audits
Transparency requires public reporting of disparate impact across demographic groups. For a binary classifier, the bias metric \( \Delta \) compares true positive rates between groups \( A \) and \( B \):
The FactScore benchmark reveals GPT-4 exhibits \( \Delta > 0.15 \) when fact-checking claims about marginalized communities, highlighting the need for debiasing techniques like adversarial learning or counterfactual augmentation.
Provenance Tracking
Trustworthy systems implement knowledge grounding by linking claims to verifiable sources. A provenance score \( S_p \) can weight sources by reliability \( r_k \) and recency \( t_k \):
where \( \alpha_k \) are learnable parameters. The Google Fact Check Tools API uses similar metrics to rank sources, with peer-reviewed journals (\( r_k \approx 0.9 \)) weighted higher than social media (\( r_k \approx 0.2 \)).
5. LLMs in Journalism and Media Fact-Checking
5.1 LLMs in Journalism and Media Fact-Checking
Architecture and Workflow for Automated Fact-Checking
Large language models (LLMs) like GPT-4, PaLM, and LLaMA are increasingly deployed in media fact-checking pipelines. The typical workflow involves three stages: claim extraction, evidence retrieval, and veracity assessment. Given an input news article or social media post, the system first identifies factual claims using fine-tuned NER (Named Entity Recognition) and relation extraction models. For each claim C, the system queries a knowledge graph or document database to retrieve supporting or refuting evidence E.
where fθ is a trained veracity classifier (often a binary or 3-way softmax) that outputs probabilities for True, False, or Misleading. State-of-the-art systems like Meta's LIAR employ ensemble methods combining LLM embeddings with structured data from Wikidata.
Challenges in Hallucination and Confidence Calibration
Despite their capabilities, LLMs exhibit critical limitations for fact-checking:
- Hallucination rates of 15-30% when generating explanations for verdicts (Zhang et al., 2023)
- Overconfidence in incorrect predictions due to poor calibration (confidence ≠ accuracy)
- Bias amplification from training data, requiring debiasing techniques like:
where B represents bias dimensions (political leaning, geographic origin, etc.) and λ controls the debiasing strength.
Hybrid Human-AI Systems in Practice
Leading media organizations deploy LLMs in decision-support rather than fully automated roles. The Reuters Institute documents two dominant architectures:
In parallel systems, humans and AI independently verify claims then reconcile differences. In sequential systems, LLMs pre-filter content and assign priority scores for human review. The Associated Press reports a 4x throughput increase using sequential filtering on wire stories.
Evaluation Metrics and Benchmarks
Standard evaluation uses the FEVER (Fact Extraction and Verification) dataset extended with temporal reasoning components. Key metrics include:
where Et denotes evidence at time t. Current SOTA models achieve 68-72% accuracy on FEVER-2, but drop to 53% on time-sensitive claims (PolitiFact Temporal, 2024).
Case Study: Election Misinformation Detection
During the 2024 elections, the Washington Post deployed a BERT-LSTM hybrid model to flag potential misinformation in real-time. The system processed 2.3M social posts/day with:
- Precision@100 of 0.82 for harmful misinformation
- Latency < 800ms per claim
- Dynamic evidence updating from 12 authoritative sources
The system's confusion matrix revealed higher false negatives on novel conspiracy theories, highlighting the need for continuous few-shot adaptation.

5.2 Use in Social Media Misinformation Detection
Challenges in Social Media Misinformation Detection
Detecting misinformation in social media presents unique challenges due to the high velocity, volume, and variability of content. Unlike static news articles, social media posts are often short, contextually sparse, and heavily reliant on multimedia. Traditional fact-checking methods struggle with real-time verification, as claims may spread faster than human fact-checkers can respond. Additionally, adversarial actors deliberately manipulate language to evade detection, employing techniques like linguistic obfuscation or contextual poisoning.
Architectural Adaptations for Social Media
Large Language Models (LLMs) must be adapted to handle social media's noisy data. Key architectural modifications include:
- Multi-modal fusion layers to process text, images, and videos jointly, as misinformation often combines misleading captions with manipulated media.
- Temporal attention mechanisms to track claim evolution across retweets or edits, modeled as:
$$ A_t = \text{softmax}\left(\frac{QK^T}{\sqrt{d_k}} + M\right)V $$ where \(M\) is a temporal mask ensuring causality.
- Graph neural network components to analyze propagation patterns, as virality correlates strongly with falsity.
Real-Time Verification Pipelines
Deploying LLMs for real-time detection requires sub-second latency. A typical pipeline involves:
- Claim extraction using sequence labeling (BIO tags) to isolate check-worthy statements from noisy streams.
- Context retrieval via dense passage retrieval (DPR) against knowledge bases like Wikipedia or fact-checking archives.
- Stance prediction using entailment models fine-tuned on datasets like FEVER or LIAR.
The end-to-end system can be optimized using techniques like model distillation or sparse attention to meet throughput requirements.
Adversarial Robustness
Malicious actors actively probe LLM vulnerabilities. Defensive strategies include:
- Data augmentation with synthetic adversarial examples (e.g., paraphrased false claims via backtranslation).
- Ensemble methods combining LLM outputs with credibility signals from network analysis and user reputation models.
- Uncertainty calibration to avoid overconfidence in predictions, quantified using expected calibration error (ECE):
$$ \text{ECE} = \sum_{m=1}^M \frac{|B_m|}{n} |\text{acc}(B_m) - \text{conf}(B_m)| $$
Case Study: Twitter/X Misinformation Detection
A 2023 study achieved 89% F1-score on political misinformation by combining GPT-4 with:
- User metadata (account age, bot likelihood scores)
- Temporal features (burst detection via Poisson processes)
- Cross-platform consistency checks
The system reduced false positives by 37% compared to text-only baselines by incorporating these auxiliary signals.

5.3 Government and Public Sector Applications
Automated Policy Document Analysis
Large language models (LLMs) are increasingly deployed to analyze and cross-reference policy documents, legislative texts, and regulatory frameworks. By fine-tuning models like GPT-4 or BERT on domain-specific corpora, governments can automate the extraction of key clauses, identify contradictions, and flag outdated regulations. The process involves:
- Semantic Embedding: Transforming legal text into high-dimensional vectors using architectures like Sentence-BERT, enabling similarity comparisons across documents.
- Contradiction Detection: Employing entailment models (e.g., RoBERTa-large-MNLI) to identify conflicting statements with precision exceeding 85% on benchmark datasets.
- Temporal Analysis: Using time-aware embeddings to detect obsolete provisions by comparing against recent amendments or court rulings.
Real-Time Misinformation Monitoring
Public agencies leverage LLMs for continuous monitoring of social media and news outlets to detect emerging misinformation. The pipeline typically integrates:
- Multi-Modal Fact-Checking: Combining text analysis with image verification (e.g., CLIP for cross-modal consistency checks) to debunk manipulated content.
- Graph-Based Propagation Tracking: Modeling information spread as temporal graphs where nodes represent claims and edges denote sharing relationships, with GNNs predicting virality risk.
- Stance Detection: Fine-tuned DeBERTa models classify user comments as supporting, refuting, or questioning claims, achieving F1-scores >0.92 on Politifact datasets.
Citizen Query Resolution Systems
Governments deploy LLM-powered chatbots that:
- Parse complex citizen inquiries using constituency parsing and intent recognition
- Retrieve authoritative answers from verified knowledge bases with citation tracking
- Maintain conversation context through memory-augmented architectures like MemN2N
The U.S. Digital Service reported a 40% reduction in call center volume after implementing such systems, with mean accuracy of 89.2% on benefit-related queries.
Legislative Drafting Assistance
Advanced systems now assist in drafting legislation by:
- Suggesting compatible legal phrasing based on precedent analysis
- Flagging potential constitutional conflicts using attention mechanisms over case law corpora
- Generating impact assessments through causal inference models
The European Parliament's pilot project demonstrated a 30% reduction in drafting time while maintaining jurisprudential consistency.
Challenges in Government Deployment
Key operational constraints include:
- Explainability Requirements: SHAP values and LIME analyses are mandated for all automated decisions exceeding certain risk thresholds.
- Data Sovereignty: Most agencies require on-premise deployment with strict data isolation, limiting cloud-based model updates.
- Adversarial Robustness: Regular stress-testing against prompt injection and data poisoning attacks is now standard practice.

6. Improving LLM Interpretability for Fact-Checking
6.1 Improving LLM Interpretability for Fact-Checking
Large language models (LLMs) exhibit remarkable capabilities in generating coherent text, but their black-box nature complicates their use in fact-checking. Interpretability techniques aim to expose the reasoning behind LLM outputs, enabling verification of factual claims. For advanced practitioners, understanding these methods is critical for deploying LLMs in misinformation detection pipelines.
Attention Mechanisms and Attribution Mapping
Transformer-based LLMs rely on self-attention mechanisms to weigh the importance of input tokens. The attention weights A for a given layer l and head h can be represented as:
where Q, K are query and key matrices, and dk is the dimension of the key vectors. By analyzing attention patterns, we can identify which input tokens most influence the model's predictions. However, raw attention weights alone are insufficient for fact-checking, as they may not correlate with factual grounding.
Gradient-Based Feature Importance
Gradient-based methods provide finer-grained attribution by measuring how small perturbations to input tokens affect the output. Integrated Gradients (IG) computes the path integral of gradients along a straight-line path from a baseline x' to the input x:
where F represents the model's output logit for a specific class. This approach highlights tokens that significantly alter the model's confidence in a factual claim.
Probing Internal Representations
Linear probing trains simple classifiers on frozen LLM representations to predict factual properties. Given hidden state ht at position t, we learn a weight matrix W to predict label y:
High probing accuracy suggests the model encodes verifiable knowledge in its activations. Recent work extends this to non-linear probes and contrastive learning objectives that separate factual from non-factual representations.
Counterfactual Explanations
Generating minimal input perturbations that flip the model's output reveals its decision boundaries. For a claim c and model prediction p(c), we seek the smallest edit δ such that:
This approach, implemented via gradient-based search or discrete optimization, identifies fragile reasoning patterns that may indicate hallucination or over-reliance on spurious correlations.
Knowledge Neuron Analysis
Recent studies isolate specific neurons that activate for factual knowledge. For a given fact, we compute the contribution of neuron i in layer l as:
where hi,l is the neuron's activation. Ablating high-contribution neurons often causes factual errors, suggesting these units encode verifiable knowledge.
Challenges in Interpretability for Fact-Checking
Current methods face several limitations when applied to misinformation detection:
- Compositional reasoning gaps: Most techniques explain individual predictions but fail to trace multi-step reasoning chains.
- Reference grounding: Attribution methods highlight influential inputs but don't verify if those inputs themselves are factual.
- Scalability: Many interpretability techniques require multiple forward/backward passes, making real-time fact-checking impractical.
Emerging solutions include hybrid neuro-symbolic architectures that combine neural attribution with explicit knowledge graph verification, and retrieval-augmented models that expose their external evidence sources.

6.2 Combining LLMs with Other AI Technologies
Hybrid Architectures for Enhanced Fact-Checking
Large Language Models (LLMs) exhibit strong semantic understanding but often lack grounding in verifiable knowledge. Combining them with retrieval-augmented generation (RAG) systems addresses this by dynamically fetching relevant evidence from trusted databases before generating responses. The retrieval component can be implemented using dense vector search over embeddings:
where q represents the query embedding and d the document embedding. This cosine similarity metric enables efficient nearest-neighbor search in high-dimensional spaces.
Knowledge Graph Integration
LLMs can be constrained by ontological knowledge graphs to improve factual consistency. A joint inference approach combines:
- Neural module: LLM generates candidate statements
- Symbolic module: Knowledge graph verifies entity relationships
The verification follows a probabilistic framework:
where α balances between neural and symbolic confidence scores.
Multimodal Verification Pipelines
For claims involving visual content, multimodal architectures cross-validate text against image/video evidence. A transformer-based fusion network processes:
- Text embeddings from the LLM
- Visual features from a vision encoder (e.g., CLIP)
- Temporal features for video claims
The alignment score between modalities is computed as:
where ht and hv are modality-specific representations, and σ is the sigmoid activation.
Adversarial Robustness
Ensemble methods combining LLMs with discriminative models improve resistance to adversarial inputs. A typical pipeline:
- LLM generates multiple interpretations of the input
- BERT-based classifier evaluates each interpretation
- Consensus mechanism aggregates results
The ensemble decision function for claim c is:
where fi are diverse base models with uncorrelated error distributions.
Real-Time Verification Systems
Production systems often deploy LLMs in cascaded architectures with specialized components:
| Component | Function | Example |
|---|---|---|
| Claim Detector | Identifies verifiable statements | Fine-tuned RoBERTa |
| Evidence Retriever | Fetches supporting documents | DPR + FAISS |
| Consistency Analyzer | Cross-checks sources | Graph neural network |
Latency is optimized through asynchronous pipelining and hierarchical attention mechanisms.

6.3 Scaling Solutions for Global Misinformation Challenges
Distributed Fact-Checking Architectures
Traditional centralized fact-checking systems face bottlenecks in processing high-volume, multilingual misinformation. Distributed architectures leverage federated learning to enable localized fact-checking models while maintaining global coherence. The key challenge lies in synchronizing model updates across nodes without compromising latency. A hybrid approach combines:
- Edge-based lightweight LLMs for initial claim assessment
- Regional aggregators for cross-verification
- Global consensus mechanisms for high-impact claims
Where K represents regional nodes, nk is the local dataset size, and λ controls global parameter alignment. This formulation enables differential privacy preservation while maintaining model accuracy across jurisdictions with varying truth standards.
Multilingual Transfer Learning
Effective misinformation detection requires handling low-resource languages through cross-lingual embeddings. The modified transformer architecture uses:
Where M is a language-pair specific mask matrix learned during pretraining. Recent implementations achieve 83% zero-shot accuracy on unseen language pairs by combining:
- Shared subword tokenization across scripts
- Language-agnostic positional encodings
- Adversarial domain adaptation losses
Real-Time Verification Pipelines
Stream processing architectures reduce fact-checking latency from hours to seconds. The pipeline stages include:
- Semantic claim extraction using bidirectional entailment detection
- Graph-based propagation analysis across social networks
- Dynamic credibility scoring of sources
The credibility score Ct evolves as:
Where α controls temporal decay and β weights direct fact-checking results (Sfact) against contextual signals (Scontext).
Adversarial Robustness
Modern misinformation campaigns employ generated content that bypasses traditional detection. Defense mechanisms include:
- GAN-based synthetic text detectors with Wasserstein discriminators
- Stochastic verification ensembles
- Embedding-space anomaly detection
The detection threshold τ adapts dynamically:
Where μk and σk are cluster-specific statistics in the latent space, and Φ is the standard normal CDF. This approach maintains 92% detection accuracy even against adaptive adversaries.
Computational Efficiency
To achieve global scale, model compression techniques reduce inference costs:
| Technique | Compression Ratio | Accuracy Retention |
|---|---|---|
| Knowledge Distillation | 5.8x | 96.2% |
| Pruning + Quantization | 12.4x | 91.7% |
| Mixture of Experts | 9.3x | 98.1% |
Sparse attention mechanisms further reduce memory requirements by 60-75% while maintaining task performance through learned importance scoring.

7. Key Research Papers on LLM Fact-Checking
7.1 Key Research Papers on LLM Fact-Checking
- Can LLMs Improve Multimodal Fact-Checking by Asking Relevant Questions? — Abstract. Traditional fact-checking relies on humans to formulate relevant and targeted fact-checking questions (FCQs), search for evidence, and verify the factuality of claims. While Large Language Models (LLMs) have been commonly used to automate evidence retrieval and factuality verification at scale, their effectiveness for fact-checking is hindered by the absence of FCQ formulation.
- The state of human-centered NLP technology for fact-checking — Fields such as journalism (Graves, 2018b, Graves and Amazeen, 2019, Neely-Sardon and Tignor, 2018) and archival studies (LeBeau, 2017) have extensively studied misinformation, and recent years have seen a significant growth in fact-checking initiatives to address this problem.Various organizations now focus on fact-checks (e.g., PolitiFact, Snopes, FactCheck, First Draft, and Full Fact), and ...
- LLMs Meet Misinformation — (1) We build a taxonomy by types, domains, sources, intents and errors to systematically characterize LLM-generated misinformation as an emerging and critical research topic. (2) We make the first attempt to categorize and validate the potential real-world methods for generating misinformation with LLMs including Hallucination Generation, Arbitrary Misinformation Generation and Controllable ...
- Combating Misinformation in the Age of LLMs: Opportunities and Challenges — LLMs can be easily utilized to generate misinformation in an unintentional or intentional way. More seriously, recent research [65] has found that LLM-generated misinformation can be harder to detect for humans and detectors compared to human-written misinformation with the same semantics, implying that the misinformation generated by LLMs can
- ICTMCG/LLM-for-misinformation-research - GitHub — An LLM can directly output the final prediction and (optional) explanations. A Multitask, Multilingual, Multimodal Evaluation of ChatGPT on Reasoning, Hallucination, and Interactivity; Large Language Models Can Rate News Outlet Credibility; Fact-Checking Complex Claims with Program-Guided Reasoning; Towards Reliable Misinformation Mitigation: Generalization, Uncertainty, and GPT-4
- [2309.13788] Can LLM-Generated Misinformation Be Detected? - arXiv.org — The advent of Large Language Models (LLMs) has made a transformative impact. However, the potential that LLMs such as ChatGPT can be exploited to generate misinformation has posed a serious concern to online safety and public trust. A fundamental research question is: will LLM-generated misinformation cause more harm than human-written misinformation? We propose to tackle this question from ...
- arXiv:2410.04616v2 [cs.CL] 20 Feb 2025 — the fact-checking performance. 1 Introduction Fact-checking is an important yet challenging task in combating online misinformation. Modern mis-information often spreads across multiple modali-ties, containing both textual and visual falsehoods, which significantly complicates accurate and effi-cient fact-checking (Akhtar et al.,2023). In jour-
- The perils and promises of fact-checking with large language models — Automated fact-checking, using machine learning to verify claims, has grown vital as misinformation spreads beyond human fact-checking capacity. Large language models (LLMs) like GPT-4 are increasingly trusted to write academic papers, lawsuits, and news articles and to verify information, emphasizing their role in discerning truth from ...
- Veracity‐Oriented Context‐Aware Large ... - Wiley Online Library — Real-time and adaptive FND, capable of responding dynamically to evolving misinformation trends, will likely be a key area of exploration. 2.3. LLM-Based Prompt Engineering. Along with the impressive complex problem capabilities of LLMs, prompt engineering has emerged as a key technique for effectively utilizing LLMs without extensive fine ...
- Factuality challenges in the era of large language models and ... — Large language models (LLMs) present challenges, including a tendency to produce false or misleading content and the potential to create misinformation or disinformation. Augenstein and colleagues ...
7.2 Open Datasets for Training and Evaluation
- LLM-for-misinformation-research - GitHub — Preventing and Detecting Misinformation Generated by Large Language Models: A tutorial about prevention and detection techniques of LLM-generated misinformation, including an introduction of recent advances of LLM-based misinformation detection. [Webpage] [Slides] Large-Language-Model-Powered Agent-Based Framework for Misinformation and Disinformation Research: Opportunities and Open ...
- OpenFactCheck: A Unified Framework for Factuality Evaluation of LLMs ... — Table below shows Word length for responses of three LLMs over the datasets of FacTool-QA, FELM-WK, Factcheck-Bench and over six evaluation datasets except for FactScore-Bio.
- arXiv:2407.00369v1 [cs.CL] 29 Jun 2024 — s of misinformation detection systems. We consider intra-domain transfer from 6 misin-formation detection and fact-checking datasets, as well as inter-domain transfer, where a fact veri-fication model is jointly trained across other con-tent moderation tasks (e.g. hate speech detection) to overcome brittlene
- PDF How to Train Your Fact Verier: Knowledge Transfer with Multimodal Open ... — For intra-domain analysis, misinformation and fact- checking datasets are normalized to have a shared label space ( supported ,refuted ,nei ). All results are reported using gold image and text evidence.
- How to Train Your Fact Verifier: Knowledge Transfer with Multimodal ... — We consider intra-domain transfer from 6 misinformation detection and fact-checking datasets, as well as inter-domain transfer, where a fact verification model is jointly trained across other content moderation tasks (e.g. hate speech detection) to overcome brittleness to biases of fact-checking datasets.
- PDF Open-Domain, Content-based, Multi-modal Fact-checking of Out-of-Context ... — The authors used trained language and vision models to retrieve a close and convincing image given a caption. While this work con-tributes to misinformation detection research by automat-ically creating datasets, it also highlights the threat that machine-assisted procedures may ease creating misinfor-mation at scale.
- Can LLMs Improve Multimodal Fact-Checking by Asking Relevant Questions? — To assess the effectiveness of LLM-generated fact-checking questions in multimodal misinformation detection, we utilize three benchmark datasets: MMFakeBench, DGM4, and Factify.
- OpenFactCheck: A Unified Framework for Factuality Evaluation of LLMs — The increased use of large language models (LLMs) across a variety of real-world applications calls for automatic tools to check the factual accuracy of their outputs, as LLMs often hallucinate.
- Factuality challenges in the era of large language models and ... — Large language models (LLMs) present challenges, including a tendency to produce false or misleading content and the potential to create misinformation or disinformation.
- Medical large language models are vulnerable to data-poisoning attacks — Because LLMs ingest massive volumes of data from the open Internet during training, they are potentially exposed to unverified medical knowledge that may include deliberately planted misinformation.
7.3 Tools and Frameworks for Implementation
- Forecasting potential misuses of language models for disinformation ... — OpenAI researchers collaborated with Georgetown University's Center for Security and Emerging Technology and the Stanford Internet Observatory to investigate how large language models might be misused for disinformation purposes. The collaboration included an October 2021 workshop bringing together 30 disinformation researchers, machine learning experts, and policy analysts, and culminated ...
- PDF Self-Checker: Plug-and-Play Modules for Fact-Checking with Large ... — designed for fact-checking texts generated by LLMs. Empirical results demonstrate the po-tential of SELF-CHECKER in the use of LLMs for fact-checking. Compared to state-of-the-art ne-tuned models, there is still signicant room for improvement, indicating that adopt-ing LLMs could be a promising direction for future fact-checking research. 1 ...
- Chapter 4: Fact Checking & Misinformation - LIN 175: Information Literacy — Chapter 4: Fact Checking & Misinformation. 4.1 Why evaluate information? 4.2 Evaluating with SIFT. 4.3 Stop. 4.4 Investigate the source. 4.5 Investigate the source: Bias. 4.6 Find better coverage. 4.7 Trace it back. ... Identify fact checking tools and resources that can be used to verify claims.
- PDF LargeLanguageModelsfor Fact-CheckingoverTables — In general, we define"Fact-checking"as evaluating the veracity of a claim in a given context. Recently, different institutes and organizations dedicated to this cause have emerged, such as Full Fact1 and PolitiFact2. As thoroughly motivated by Vlachos and Riedel[35],fact-checkingisacomplicatedandtime-consumingprocess. Beforeproceed-
- FACT-GPT: Fact-Checking Augmentation via Claim Matching with LLMs — The urgent need for extensive fact-checking has been driven by the rapid proliferation of misinformation on digital platforms [24]. The fact-checking process, though complex and labor-intensive encompassing several stages from claim identification to drawing final conclusions, [5, 7] could be made more efficient through AI tools [1]. It is ...
- The Dark Side of Language Models: Exploring the Potential of LLMs in ... — The application of (multimodal-)LLMs in this context not only offers potential scalability to match the evolving nature of disinformation but also allows for the nuanced understanding that can keep pace with the sophistication of AI-generated misinformation. Tools such as Provenance and Fermi need to leverage LLMs in their pipeline to tackle ...
- PDF How to Train Your Fact Verier: Knowledge Transfer with Multimodal Open ... — from large language models (LLMs). We evaluate open multimodal foundation mod-els on twelve public benchmarks covering fact-checking, misinformation, toxicity and stance detection. Our results on two recent and widely used multi-modal fact-checking benchmarks, Mocheg and Fakeddit, indicate that knowledge transfer strategies can improve Fakeddit ...
- PDF Using Large Language Models responsibly in the civil service — This structure ensures that implementation guidance is grounded in a solid understanding of the technology's potential and constraints. This implementation guide builds upon established government frameworks such as AI guide in the public sector2, implementation planning3, AI assessment framework4, AI ethics and safety5 and managing AI projects6
- (PDF) Can LLM-Generated Misinformation Be Detected? - ResearchGate — The advent of Large Language Models (LLMs) has made a transformative impact. However, the potential that LLMs such as ChatGPT can be exploited to generate misinformation has posed a serious ...
- Veracity‐Oriented Context‐Aware Large ... - Wiley Online Library — As research continues to evolve, it is crucial to focus on developing scalable, interpretable, and adaptive frameworks that can keep pace with the dynamic nature of misinformation in the digital age. Early methods in FND primarily utilized machine learning algorithms that relied on manually crafted features extracted from the textual content ...








