Domain III · Competency III.B

Govern the collection and use of data in training and testing

Establish data governance (lawful rights, quality, integrity, fit-for-purpose), capture data lineage and provenance, plan and perform training and testing, manage issues and risks that arise, and document the process.

Exam weight: 6–8 questions

Quick check not attempted yet — take it below to track your score.

Performance indicators

Key terms

Data governance
The policies, roles and controls ensuring data used to train and test AI is lawfully obtained, high-quality, well-managed and fit for purpose. A core EU AI Act high-risk requirement (Art. 10).
Lawful rights to use data
Confirmed legal basis to collect and use the data — consent or other GDPR lawful basis, licensing, IP/copyright clearance and contractual permission — assessed and documented before training.
Fit-for-purpose
Whether the data is relevant, representative and appropriate for the specific intended use — not just abundant. Wrong-population data is unfit even if plentiful and clean.
Data lineage
The end-to-end record of where data came from and every transformation it underwent (collection → cleaning → labelling → feature engineering → training set).
Data provenance
The documented origin and ownership history of a dataset — source, collection method, rights and chain of custody. Underpins trust, reproducibility and IP/legal defensibility.
Validation vs. verification
Verification = "did we build the system right?" (meets spec). Validation = "did we build the right system?" (meets the real-world need). A validation dataset also tunes a model during training, separate from the held-out test set.
Bias testing
Measuring performance disparities across groups (e.g., demographic parity, equalised odds) to detect harmful bias before deployment.
Interpretability testing
Evaluating whether the model's behaviour can be explained/understood (e.g., feature importance, SHAP/LIME), so reviewers can trust and audit it.
Train/validation/test split
Partitioning data so the model learns on the training set, is tuned on the validation set, and is evaluated once on a held-out test set to estimate real-world performance.
Overfitting
When a model memorises training data (including noise) and fails to generalise — high training accuracy, poor test accuracy. Detected by comparing train vs. validation/test performance.
Data poisoning
An attack that corrupts training data to degrade the model or implant a backdoor — a security risk that must be tested for during the training pipeline.
Ground truth
The trusted, correct labels/answers a model is trained against and evaluated on; its quality caps the quality of everything learned from it.

At a glance

Modern AI is data-dependent, so governing the data is governing the model. This competency covers the data and testing middle of the life cycle — mostly NIST AI RMF MEASURE, with data governance running through MAP and MANAGE.

Five moves:

  1. III.B.1 — Govern the data. Lawful rights to use it; quality, quantity, integrity, fit-for-purpose.
  2. III.B.2 — Trace the data. Establish and document lineage and provenance.
  3. III.B.3 — Plan and perform testing. Unit, integration, validation, performance, security, bias, interpretability.
  4. III.B.4 — Manage issues. Identify and treat risks that surface during training and testing.
  5. III.B.5 — Document it. Record the training/testing process to validate results, prove compliance, manage risk.

The two phrases the exam keeps returning to: “garbage in, garbage out” (data quality bounds model quality) and the validation vs. verification distinction.

III.B.1 — Establish and follow data governance requirements

Two pillars: lawful rights and data quality.

Lawful rights to collect and use data — assessed and documented before training:

Data quality dimensions the BOK and EU AI Act Art. 10 emphasise:

III.B.2 — Establish and document data lineage and provenance

Provenance answers where did this data come from and who owns it — origin, collection method, rights, chain of custody. Lineage answers what happened to it — every transformation from raw collection through cleaning, labelling, feature engineering, into the training set.

Why governance cares:

This is increasingly demanded externally too: GPAI providers under the EU AI Act must publish a summary of training-content sources.

III.B.3 — Plan and perform training and testing

Testing AI blends classic software testing with ML-specific evaluation. The BOK lists the types — know what each one checks:

Test typeWhat it checks
UnitIndividual components/functions behave correctly in isolation
IntegrationComponents work together; data pipeline and model connect correctly
ValidationThe model meets the real-world need; tuned/checked on a validation set (right system)
PerformanceAccuracy/precision/recall, latency, throughput, scalability under load
SecurityResistance to poisoning, adversarial examples, model inversion/extraction, prompt injection
BiasDisparate performance across demographic groups (fairness metrics)
InterpretabilityWhether the model’s behaviour can be explained/understood by reviewers

Data splitting underpins all of it: train on the training set, tune on the validation set, and report on a held-out test set used only once. Comparing training vs. validation/test performance is how you catch overfitting (memorising) and underfitting (too simple). Before any training, feature engineering — selecting and transforming raw data into the input variables (features) the model learns from — is itself a governance point: which attributes are included (or proxy for protected ones) is decided here.

NIST wraps this whole discipline in one acronym worth knowing: TEVVTest, Evaluation, Verification and Validation — which the AI RMF treats not as a phase but as a continuous activity across the entire lifecycle (design-time checks, pre-deployment evaluation, and post-deployment monitoring all count as TEVV).

III.B.4 — Identify and manage issues and risks during training and testing

Problems surface once you have data and a model. Common issues and their treatments:

Manage these with the same discipline as III.A.4: rate by probability/severity, apply the mitigation hierarchy, and escalate residual risk for sign-off. Issues that cannot be mitigated to within tolerance are a no-go signal.

III.B.5 — Document the training and testing process

Documentation here serves three jobs the BOK names: validate results, establish compliance, manage risk.

Capture:

This is the raw material for data sheets / dataset documentation, the EU AI Act technical documentation (Annex IV) and the eventual model card (III.C.1). Documenting as you test makes results reproducible and the eventual conformity claim defensible.

How this shows up later

Sources

Flashcards

1 / 10

Quick check

Quick check1 / 15 · score 0

A team has collected 50 million labelled images for a model intended to work in a specific hospital, but the images come almost entirely from a different country’s population. The dataset is large and clean. What is the main data-governance problem?

  • AInsufficient quantity of data.
  • BPoor data integrity (the data is corrupted).
  • CLack of fit-for-purpose / representativeness for the deployment population.
  • DThere is no problem; volume and cleanliness are sufficient.