---
title: Potentially Applicable Explanations (PAE)
url: https://www.emergentmind.com/topics/potentially-applicable-explanations-pae
type: topic
---

# Potentially Applicable Explanations (PAE)

A Potentially Applicable Explanation (PAE) is a class of model explanations characterized by a strong alignment with cognitive, semantic, or formal principles that support their direct usability in downstream human-centered or scientific workflows. PAEs are distinguished by being both interpretable and actionable: they use domain-meaningful concepts, structures, or dimensions and offer a degree of formal or practical fidelity that makes them “deployable” in real-world AI systems, safety-critical supervision, or scientific investigation. PAEs have emerged as a unifying theme across recent research in explainable AI, incorporating cognitive appraisal models, ontology-based semantic reasoning, and logic-based extraction techniques [2508.01388, 2106.15433, 2106.06804].

## 1. Formal Definitions and Theoretical Foundations

The PAE notion is instantiated differently across paradigms, but always with a formal scaffold:

- In the appraisal-based framework, a PAE is a structured justification for a system decision $y$ on input $x$, constructed by identifying and combining appraisal “primitives” (dimensions such as relevance, implications, coping potential, normative significance) [2508.01388]. For each dimension $i$, a scoring function $f_i(x,y)$ produces appraisal scores $A_i(x,y)\in [0,1]$, from which the dominant dimensions are selected to synthesize a composite explanation.
- In the context of semantic post-hoc summarization, a PAE is a compact, human-readable conjunction of ontology terms that covers, generalizes, and discriminates class-relevant feature attributions. This construction relies on the theory of least general generalization in ontological spaces and information-theoretic criteria (e.g., GenQ) for quality [2106.15433].
- In concept-based neural models with logic extraction, a PAE takes the form of first-order logic (FOL) predicates over interpretable concepts, distilled from model weights via an entropy-guided criterion. Each formula $\phi^i$ is required to be formally equivalent (or nearly so) to the classifier’s behavior on the Boolean concept activation space [2106.06804].

These approaches share a commitment to explicit mappings between machine representations and human cognition or expertise, ensuring that explanations are not mere technical rationalizations, but are in principle usable by humans in practice.

## 2. Key Dimensions and Construction Algorithms

Each research approach to PAE construction is grounded in explicit dimensions or foundations:

| Approach               | Underlying Structure         | Output Format          |
|------------------------|-----------------------------|-----------------------|
| Appraisal-based [2508.01388]    | Appraisal dimensions (CPM)      | Natural language fragments|
| Semantic reasoning [2106.15433] | Ontological hierarchy, GenQ     | Conjunction of ontology terms|
| Logic extraction [2106.06804]   | Boolean concept algebra, entropy| First-order logic formulas|

- **Appraisal Dimensions**: Derived from the Component Process Model (CPM), core dimensions include relevance (semantic goal alignment), implications (loss-based consequence), coping potential (controllability), and normative significance (compliance with rules or values). Each is computed from input $x$ and decision $y$, with concrete scoring functions—e.g., cosine similarity between user goal embeddings and item features for relevance; normalized cost differentials for implications [2508.01388].
- **Semantic Generalization**: Post-hoc instance-level attributions (e.g., via SHAP) are mapped through a feature-to-ontology concept mapping, and then generalized to cover-class and discriminate-class conjunctions using “Selective Staircase” or “Ancestry” algorithms. Explanation quality is quantified by GenQ (normalized reduction in average information content), and discrimination is enforced by overlap constraints [2106.15433].
- **Logic Derivation**: In concept-based networks, a per-class entropy-based regularizer forces the network to concentrate output logic on a minimal subset of concepts. The trained classification head is binarized, and empirical truth tables yield disjunctive normal form (DNF) FOL rules that are short, auditable, and directly executable at test time [2106.06804].

## 3. Construction Workflows and Pseudocode

The synthesis of PAEs proceeds via a modular, often algorithmic, workflow:

- **Appraisal PAE Synthesis**:
  1. For each appraisal dimension $i$, compute raw score $f_i(x,y)$.
  2. Normalize using weights $w_i$, yielding $A_i = (w_i f_i) / \sum_j w_j$.
  3. Rank dimensions by $A_i$, select top $m$.
  4. Instantiate templated fragments $T_i$ for those dimensions, incorporating $A_i$ and context.
  5. Concatenate fragments for the final explanation.
  6. Return the composed PAE [2508.01388].
- **Semantic Reasoning (ReEx) Pipeline**:
  1. Aggregate instance-level post-hoc feature attributions (e.g., SHAP).
  2. Map top features to ontology via $M: \{F_j\} \rightarrow 2^T$.
  3. Iteratively generalize and prune using Selective Staircase or pairwise Ancestry algorithms, guided by coverage, discriminability, and informativeness.
  4. Output minimal, context-specific explanation sets $G_c$ [2106.15433].
- **Entropy-Based Logic Extraction**:
  1. Train classifier with additional entropy regularizer to induce peaked concept weight distributions.
  2. After training, threshold high-importance concepts.
  3. For each output/class, construct empirical DNF from binary masks over activation space.
  4. Optionally simplify formulas via logic minimization [2106.06804].

## 4. Illustrative Case Studies

Recent literature demonstrates PAE construction in diverse domains:

- **Appraisal-based Example**: In a meal recommendation scenario, user input specifies constraints (“hungry, in a hurry, 15 minutes”). The system decision is “Grilled Chicken & Quinoa Salad.” Appraisal scores yield highest values for normative significance, urgency, and relevance. The PAE: “I recommend Grilled Chicken & Quinoa Salad because it takes only about 12 minutes to prepare (urgency: 0.95), aligns closely with your health goals (relevance: 0.88), and conforms to your dietary standards (normative significance: 1.00)” [2508.01388].
- **Semantic Reasoning Example**: In multi-class gene expression classification (Breast A data), raw top gene attributions are mapped to GO terms (“DNA repair,” “ubiquitin protein ligase binding,” etc.). Selective Staircase generalizes these to a compact conjunction of terms describing mechanisms for each subtype, immediately interpretable by molecular biologists [2106.15433].
- **Logic Extraction Example**: For ICU mortality prediction (MIMIC-II), the extracted FOL rule: $recover \leftrightarrow \lnot liver\_flg \wedge \lnot stroke\_flg \wedge \lnot mal\_flg$, isolates a minimal clinical signature for likely recovery [2106.06804].

## 5. Cognitive and Domain Alignment

The central property of PAEs is their strong cognitive and/or domain alignment:

- Appraisal-based PAEs are explicitly constructed to mirror human evaluative steps grounded in psychological theory, rendering the explanations both context-sensitive and naturally intelligible [2508.01388].
- Semantic PAEs, by construction, abstract raw model features to higher order domain concepts via ontological reasoning, making them immediately actionable in biological or clinical interpretation, and avoiding domain-opaque technical details [2106.15433].
- Logic-based PAEs offer formal, sparse, and verifiable rules that expose the classifier’s reliance on interpretable concepts, facilitating domain expert audit and regulatory compliance [2106.06804].

This alignment is crucial for high-stakes applications where technical fidelity alone is insufficient: user trust, oversight, and meaningful downstream adaptation require explanations that “make sense” within a given domain or cognitive frame.

## 6. Empirical Evaluation and Limitations

Published works report evidence on the usability, compactness, and informativeness of PAEs:

- Appraisal-condition explanations increase perceived transparency and trust in qualitative pilot feedback, and are judged more context-aware and emotionally resonant than LLM-generated baselines. However, full-scale quantitative evaluation and task-level A/B testing remain to be pursued [2508.01388].
- Semantic reasoning approaches demonstrate that explanation sets from ReEx models are smaller (e.g., 20–40 ontology terms vs. 150 for naïve mapping), more general (GenQ gain +10–26%), and class-discriminative, validated across multiple gene-expression data sets [2106.15433].
- Entropy-based logic extraction methods produce FOL explanations with high fidelity (>90% on held-out clinical data), of minimal length (typically 3–5 literals), and are straightforward for domain experts to understand, edit, and formally verify [2106.06804].

Limitations include dependence on the quality of concept vocabularies, ontologies, or mappings; subjective thresholding or weighting hyperparameters; possible loss of technical fidelity for the sake of interpretability; and the lack of large-scale user studies in some cases.

## 7. Prospects and Extensions

PAE methodologies are readily extensible to other domains (e.g., cyber-security, financial risk, clinical terminologies) and support hybridization (e.g., combining symbolic reasoning with graph embeddings). Open challenges include automating hyperparameter selection, expanding to non-DAG knowledge graphs, and quantifying downstream human-in-the-loop utility. As the uptake of PAEs grows, rigorous frameworks for evaluation and formal verification are expected to co-evolve with their application in regulatory and human-centered AI settings [2508.01388, 2106.15433, 2106.06804].

Source: https://www.emergentmind.com/topics/potentially-applicable-explanations-pae