DEV Community

B Diop
B Diop

Posted on

AI Semantics Is The First Governance Failure

Picture the typical executive committee room:

  • The General Counsel hears "AI" and evaluates liability, emerging regulations, and contractual risk.
  • The Engineering Lead hears "AI" and visualizes neural network architectures, pipelines, and loss functions.
  • The Chief Risk Officer hears "AI" and flags opacity, uncalibrated autonomy, and downside exposure.
  • The CEO hears "AI" and drafts a competitive growth narrative for the board.

Four leaders, one acronym, four entirely different operational objects. Everyone nods, but nobody agrees.

%%{init: {
  "flowchart": {
    "curve": "basis",
    "nodeSpacing": 35,
    "rankSpacing": 55
  },
  "theme": "base",
  "themeVariables": {
    "fontFamily": "Arial, sans-serif",
    "fontSize": "15px",
    "lineColor": "#64748b"
  }
}}%%

flowchart LR
    AI(("AI"))

    LEGAL["GENERAL COUNSEL"]
    ENG["ENGINEERING LEAD"]
    RISK["CHIEF RISK OFFICER"]
    CEO["CEO"]

    FALSE["FALSE CONSENSUS"]

    BRIDGE["AI GOVERNANCE<br/>Shared AI taxonomy<br/>Defined ownership<br/>Common risk tiers"]

    OUTCOME["SHARED UNDERSTANDING<br/>Consistent scope • Controls<br/>Accountability • Decisions"]

    AI --> LEGAL
    AI --> ENG
    AI --> RISK
    AI --> CEO

    LEGAL --> FALSE
    ENG --> FALSE
    RISK --> FALSE
    CEO --> FALSE

    FALSE --> BRIDGE
    BRIDGE -->|"Operationalize"| OUTCOME

    classDef ai fill:#111827,stroke:#f8fafc,stroke-width:4px,color:#f8fafc;

    classDef legal fill:#172554,stroke:#60a5fa,stroke-width:2px,color:#dbeafe;
    classDef engineering fill:#3b0764,stroke:#d946ef,stroke-width:2px,color:#fae8ff;
    classDef risk fill:#7c2d12,stroke:#fb923c,stroke-width:2px,color:#ffedd5;
    classDef strategy fill:#064e3b,stroke:#34d399,stroke-width:2px,color:#d1fae5;

    classDef falseConsensus fill:#881337,stroke:#fb7185,stroke-width:3px,color:#fff1f2;
    classDef governance fill:#4c1d95,stroke:#c084fc,stroke-width:3px,color:#faf5ff;
    classDef outcome fill:#14532d,stroke:#4ade80,stroke-width:4px,color:#f0fdf4;

    class AI ai;
    class LEGAL legal;
    class ENG engineering;
    class RISK risk;
    class CEO strategy;
    class FALSE falseConsensus;
    class BRIDGE governance;
    class OUTCOME outcome;

    linkStyle 0 stroke:#60a5fa,stroke-width:2px;
    linkStyle 1 stroke:#d946ef,stroke-width:2px;
    linkStyle 2 stroke:#fb923c,stroke-width:2px;
    linkStyle 3 stroke:#34d399,stroke-width:2px;

    linkStyle 4,5,6,7 stroke:#fb7185,stroke-width:2px;
    linkStyle 8 stroke:#c084fc,stroke-width:3px;
    linkStyle 9 stroke:#4ade80,stroke-width:3px;

1. Grounding the Core Definition

To resolve cross-functional ambiguity, governance frameworks must anchor to an authoritative standard rather than internal debate.

ISO/IEC 22989 defines an AI system as:

A machine-based system that infers from the input it receives how to generate outputs (such as content, forecasts, recommendations, or decisions) that can influence physical or virtual environments.

Why This Definition Works for Governance:

  • Focuses on Behavior, Not Hype: It requires neither human-level intelligence nor full autonomy.
  • Covers Symbolic and Statistical Approaches: It encompasses both learned models and deterministic, rules-based expert systems.
  • Anchors on Influence: The threshold for governance is whether the system infers an output that influences an environment.

2. Why AI Changes Governance: 7 Core Characteristics

Traditional IT governance relies on predictable logic, static code paths, and clear change windows. AI breaks several of these assumptions.

1. AI System vs. AI Model

The Distinction: The model (weights and algorithms) is merely a mathematical component. The AI system includes data pipelines, interfaces, integration logic, human workflows, and downstream operational actions.
Governance Impact: Evaluating only the model treats an engine inspection as a comprehensive road-safety program. Risk primarily manifests where outputs trigger actions.

2. Probabilistic vs. Deterministic Execution

The Distinction: Traditional code executes deterministic IF/THEN logic: identical inputs yield identical outputs. Modern AI (particularly machine learning) is probabilistic, producing outputs with varying statistical confidence.
Governance Impact: Binary pass/fail unit testing is insufficient. Governance requires confidence thresholds, distribution testing, and fallback rules.

3. Complexity and Opacity (Subsymbolic AI)

The Distinction: Symbolic AI rules can be audited line-by-line; deep neural networks distribute learned patterns across billions of parameters, creating "black-box" systems.
Governance Impact: Lack of transparency requires specialized post-hoc explainability methods, surrogate models, and heightened outcome testing to meet regulatory expectations.

4. Autonomy Spectrum (Not a Binary State)

The Distinction: Systems range from full human control to automated task execution and closed-loop autonomous decision-making.
Governance Impact: The key question is not "is it autonomous?" but "where does meaningful human control exist?" Governance must ensure operators have the context, time, and authority to intervene.

5. Speed and Scale

The Distinction: Automated inferences execute in milliseconds across millions of transactions.
Governance Impact: Bias, errors, or model hallucinations propagate across an enterprise instantly, requiring real-time rate limits, automated circuit breakers, and programmatic kill switches.

6. Data Dependency and Concept Drift

The Distinction: Traditional software changes only when engineers deploy updates. ML systems depend entirely on input distributions; when real-world conditions diverge from training data, performance degrades.
Governance Impact: "Test once, trust forever" fails. Organizations require ongoing statistical monitoring for data drift, concept drift, and performance degradation.

7. Potential for Misuse and Dual-Use Risk

The Distinction: Broad-capability systems (such as foundation models) can be repurposed beyond their original design parameters.
Governance Impact: Governance must extend beyond intended use to assess foreseeable misuse, prompt injection vulnerabilities, downstream fine-tuning, and unapproved deployment vectors.


3. AI Governance Glossary

Term Definition (ISO/IEC 22989 Core) Governance Significance Concrete Enterprise Example Related Control / Policy
1. AI System A machine-based system that infers, from inputs, how to generate outputs (content, forecasts, recommendations, decisions) that influence physical/virtual environments. Establishes the jurisdictional scope boundary. Prevents teams from bypassing governance on minor technical distinctions. A loan-triage tool scoring applications and routing them to credit officers. AI System Inventory & Intake Policy
2. AI Model The trained mathematical component within an AI system that transforms inputs into outputs. Prevents model-only risk management. Risk lives in data feeds and downstream actions, not just algorithmic weights. A credit risk XGBoost model embedded within a customer origination portal. Model Risk Management (MRM) Standard
3. Output (Tiers) What an AI system produces: content, forecasts, recommendations, or decisions. Risk escalates as outputs move from advisory content to automated decisions. Governs required human oversight levels. Drafting marketing copy (advisory) vs. automated transaction blocking (actionable decision). Risk Tiering & Intake Classification Framework
4. Meaningful Human Control Genuine human capability to understand, intervene in, and override automated inferences—avoiding nominal "rubber-stamping." Regulators reject superficial oversight where reviewers lack time, context, or technical capability to correct outputs. An underwriter given contextual decision factors and clear authority to reverse an automated loan denial. Human-in-the-Loop (HITL) & Override Standard
5. Verification vs. Validation Verification: Built right (meets technical specs).
Validation: Built the right system (fit for intended operational purpose).
Conflating the two leads to systems that pass mathematical benchmarks but fail real-world operational or legal requirements. Model achieves 96% accuracy on test data (verified) but discriminates against protected groups in production (invalid). Pre-deployment Validation & Sign-off Gate
6. Explainability vs. Predictability Explainability: Understanding why a system made a past decision.
Predictability: Anticipating how a system will behave across future states.
Explainability addresses adverse-action notices and contestability; predictability satisfies safety and risk boundary constraints. Supplying top denial reasons to an applicant vs. establishing operating boundaries for a dynamic pricing engine. Algorithmic Transparency & Contestability Policy
7. Robustness vs. Reliability Robustness: Maintaining performance under stress/adversarial conditions.
Reliability: Consistent performance over time under normal operations.
A system can be reliable in steady conditions but fail under data drift or targeted adversarial prompt attacks. A document parser maintaining accuracy across degraded scans vs. processing standard invoices daily within SLA. Adversarial Testing & Stress-Testing Requirement
8. Resilience The operational ability to recover and restore normal functioning after an error, failure, or disruption. Shifts focus from impossible zero-failure guarantees to business continuity, fallback mechanisms, and rapid recovery. A fraud engine gracefully falling back to deterministic business rules when an ML service becomes unreachable. Business Continuity & AI Incident Runbooks
9. Stakeholder (Decision Subject) Any party affected by an AI system, including developers, operators, and individuals impacted by its outputs. Prevents systems from considering only system operators, ensuring protections for impacted end users and subjects. A rejected job applicant whose résumé was screened by an automated parsing model. Stakeholder Impact Assessment (AIA / DPIA)
10. AI Lifecycle The iterative progression: Inception → Design → Development → V&V → Deployment → Monitoring → Retirement. Mandates continuous governance across the lifecycle rather than a single point-in-time approval at launch. Triggering a formal governance re-review when an external data source changes six months post-launch. Change Management & Drift Re-Approval SOP

Top comments (0)