Claim-triplet: A factual claim represented as a (head_entity, relation, tail_entity) structure extracted from natural language text
Zero Context (ZC): A setting where the LLM answers based solely on internal memory without external documents
Noisy Context (NC): A RAG setting where the LLM answers based on retrieved documents that may contain irrelevant or noisy information
Accurate Context (AC): A setting where the provided reference text is assumed to be correct and relevant (e.g., summarization tasks)
NLI: Natural Language Inference—determining if a hypothesis is true (entailment), false (contradiction), or unrelated (neutral) given a premise
LoRA: Low-Rank Adaptation—a parameter-efficient fine-tuning technique that updates only a small subset of model weights
RepC: Representation-based Classifier—a checker that uses a shallow classifier (like SVM or MLP) on top of an LLM's internal hidden states
RAG: Retrieval-Augmented Generation—providing external documents to an LLM to ground its answers