4.5 AI System Verification, Validation, Deployment & Operation (Annex A.6.2.5–A.6.2.9)

Key Takeaways

  • Control A.6.2.5 (Verification) and Control A.6.2.6 (Validation) ensure AI models meet technical requirements and satisfy user needs in operational contexts.
  • Model V&V requires advanced testing techniques including cross-validation, adversarial red-teaming, regression testing, and out-of-distribution testing.
  • Control A.6.2.7 (Deployment) mandates controlled release strategies such as canary rollouts, blue-green deployments, shadow mode, and automated rollbacks.
  • Control A.6.2.8 (Operation & Monitoring) requires real-time telemetry tracking for data drift, concept drift, and performance degradation.
  • Control A.6.2.9 (Decommissioning & Retirement) details protocols for safe AI system sunsetting, data archiving, API deactivation, and stakeholder notification.
Last updated: July 2026

4.5 AI System Verification, Validation, Deployment & Operation (Annex A.6.2.5–A.6.2.9)

Once an artificial intelligence model has been designed and trained, it must undergo rigorous operational testing before deployment into production. Annex A.6.2.5 through A.6.2.9 govern the critical downstream phases of the AI lifecycle: technical verification, operational validation, controlled deployment, continuous monitoring, and eventual retirement.

Failure to enforce these controls exposes organizations to catastrophic production failures, unintended algorithmic bias, silent model performance degradation (drift), and severe regulatory penalties under frameworks like the EU AI Act.


Verification vs. Validation (Controls A.6.2.5 & A.6.2.6)

Lead Implementers must distinguish clearly between Verification and Validation during audit preparation:

Evaluation DimensionAI System Verification (Control A.6.2.5)AI System Validation (Control A.6.2.6)
Core Question"Did we build the AI system right?" (Technical compliance)"Did we build the right AI system?" (Operational utility)
FocusConformance to documented technical specs, code syntax, mathematical loss functionsFulfilling user needs, business goals, ethical boundaries, real-world utility
Key Test MethodsUnit testing, integration testing, benchmark test suites, adversarial testing, stress testingUser Acceptance Testing (UAT), domain expert review, field trials, human oversight simulations
Evaluation DataHeld-out test datasets, synthetic test cases, adversarial perturbation inputsReal-world operational pilot data, live production shadow traffic
Key MetricsAccuracy, Precision, Recall, AUC-ROC, latency (ms), adversarial robust scoreUser satisfaction, task completion rate, demographic fairness, business ROI

Advanced Model Verification & Validation Techniques

Lead Implementers must ensure data science and QA teams employ specialized model evaluation techniques:

1. Cross-Validation Techniques

To ensure models generalize well to unseen data, teams must use robust sampling methods:

  • K-Fold Cross-Validation: Splitting training data into K subsets, iteratively training on K-1 folds and validating on the held-out fold.
  • Stratified K-Fold: Ensuring each fold preserves the exact class distribution of the overall dataset (critical for imbalanced datasets).
  • Time-Series Split: Testing sequential data without look-ahead bias by respecting temporal order.

2. Adversarial Testing

Adversarial testing evaluates model resilience against intentional malicious inputs:

  • Evasion Attacks (FGSM / PGD): Applying imperceptible mathematical noise (such as Fast Gradient Sign Method or Projected Gradient Descent) to input images or text to trick the model into misclassifications.
  • Prompt Injection Testing: Attempting to bypass safety filters in generative AI LLMs via system prompt overrides.

3. Red-Teaming

Red-teaming involves multi-disciplinary ethical hackers, domain experts, and risk engineers attempting to break the AI system in structured sandbox environments to discover hidden safety vulnerabilities, bias, or toxic outputs.

4. Regression Testing

Evaluating updated model checkpoints against standardized "Golden Test Datasets" to verify that retrained models do not degrade performance on previously solved edge cases.

5. Out-of-Distribution (OOD) Testing

Testing model responses against extreme, highly unusual input data that falls outside the training distribution to verify that fail-safe mechanisms trigger appropriately.


Control A.6.2.7: AI System Deployment

Normative Control Statement: Deployment of the AI system into operational environments shall be planned, controlled, and documented.

Deploying an AI model directly to 100% of production traffic without risk controls introduces immense operational risk. Control A.6.2.7 enforces Staged Deployment Strategies:

Loading diagram...
Staged AI System Deployment Pipeline and Automated Rollback Architecture (Control A.6.2.7)

Key deployment strategies under Control A.6.2.7 include:

  • Operational Readiness Review (ORR): A formal sign-off gateway verifying that verification test logs are complete, model documentation is signed, security scans have passed, and rollback plans are active.
  • Shadow Mode Deployment: The new AI model processes live production inputs parallel to existing systems, but its predictions are logged silently without affecting end-user decisions. This validates real-world latency, memory usage, and output stability.
  • Canary Deployments: Routing a tiny percentage (e.g., 1% to 5%) of live traffic to the new model, enabling real-time error rate comparison against the legacy system.
  • Automated Rollback Triggers: Defining explicit rules that immediately revert traffic to a safe legacy state if error rates, latency spikes, or anomalous output distributions cross predefined thresholds.

Control A.6.2.8: Operation and Monitoring of AI Systems

Normative Control Statement: The operational performance, behavior, and impacts of deployed AI systems shall be continuously monitored and logged.

Because production environments evolve, AI models suffer from performance degradation over time. Monitoring must capture three primary operational anomalies:

  1. Data Drift (Covariate Shift): Statistical shifts in the distribution of input data entering the model compared to the baseline training dataset (e.g., customer transaction patterns shifting during macroeconomic changes).
  2. Concept Drift (Prior Probability Shift): Changes in the underlying statistical relationship between input features and target variables (e.g., fraud techniques evolving to evade historical detection patterns).
  3. System & Resource Degradation: Memory leaks, latency degradation, GPU hardware throttling, or API connection timeouts.

Human Oversight and Override Controls

Control A.6.2.8 requires embedding Human-in-the-Loop (HITL) or Human-on-the-Loop (HOTL) controls. Operational dashboards must provide human operators with the ability to pause automated decision pipelines, override individual predictions, or force immediate model fallback.


Control A.6.2.9: Decommissioning and Retirement of AI Systems

Normative Control Statement: The decommissioning, sunsetting, and disposal of AI systems shall be conducted securely and in accordance with organizational policies.

When an AI model reaches end-of-life—due to obsolescence, unmitigated drift, business restructuring, or regulatory changes—the organization must execute a controlled Retirement Plan:

  • API Endpoint Revocation: Deactivating public and internal API endpoints to prevent unauthorized execution of deprecated models.
  • Model & Data Archival: Securing model weights, training scripts, configuration files, and evaluation logs in long-term immutable archives for legal auditability.
  • Stakeholder Notification: Formally notifying downstream users, business units, and external interested parties prior to service termination.
Test Your Knowledge

What is the key functional distinction between AI System Verification (Control A.6.2.5) and AI System Validation (Control A.6.2.6)?

A
B
C
D
Test Your Knowledge

Which advanced model evaluation technique involves multi-disciplinary ethical hackers attempting to break an AI system in a sandbox environment to discover hidden safety vulnerabilities or toxic outputs?

A
B
C
D
Test Your Knowledge

Which deployment strategy involves running a new AI model on live production inputs in parallel with existing systems without displaying its predictions to end-users?

A
B
C
D
Test Your Knowledge

Under Control A.6.2.8 (Operation and Monitoring), what type of operational anomaly occurs when the statistical relationship between input features and target labels changes over time?

A
B
C
D