Data preparation and curation is the stage where raw data is cleaned, enriched, transformed, validated, and moved into a form suitable for analytics or model training. In AI systems, this step determines whether the model learns from relevant, accurate inputs and may also supply retrieval data used during runtime.
Expanded Definition
Data preparation and curation covers the work that turns raw datasets into analysis-ready or training-ready inputs. It usually includes cleansing, deduplication, enrichment, normalization, labeling, filtering, and validation, but the exact boundary depends on whether the goal is analytics, machine learning, or retrieval-augmented generation. In AI contexts, curation also includes deciding which sources are authoritative, current, and safe enough to feed downstream systems.
The term is broader than simple data cleaning. It includes governance choices about provenance, access, and fitness for purpose, especially where curated data becomes part of a model training set or a runtime retrieval corpus. The main misunderstanding is to treat it as a one-time engineering task; in practice, curation is continuous because source systems, schemas, and business rules change. Guidance is mixed on how much preprocessing should happen before model training, but the consensus is clear that uncontrolled inputs produce weaker, less trustworthy outputs.
Examples and Use Cases
Common examples include:
- Removing duplicate customer records before training a classification model so the model does not overweight repeated patterns.
- Normalizing dates, units, and categorical labels so records from different source systems can be compared consistently.
- Filtering low-quality or irrelevant documents before building a retrieval index for a support assistant.
- Enriching records with reference data, such as asset tags or product metadata, to improve downstream joins and feature quality.
- Applying validation rules so malformed, stale, or out-of-scope records are rejected before they enter a model pipeline.
For AI teams, the trade-off is usually between speed and assurance. Aggressive filtering can reduce noise, but it can also remove rare cases that matter for edge-condition performance. Less selective curation may preserve coverage, but it raises the chance that downstream systems learn from inconsistent or misleading inputs.
Security Implications
Data preparation and curation has direct security implications because the quality of the input set shapes what an AI system can learn or retrieve. If the process admits poisoned, stale, or unverified data, the downstream effect is not limited to accuracy loss. It can create unsafe recommendations, policy drift, and inconsistent retrieval results that are difficult to trace back to the source.
Weak curation also creates governance blind spots. Teams may assume that because the raw data came from an internal system, it is automatically fit for model use. In reality, internal data can still contain duplicated records, hidden bias, outdated permissions, corrupted fields, or content that should never be exposed through a retrieval layer. Once those issues are embedded in training or indexing, they tend to persist until the entire pipeline is revisited.
A practical observation is that many failures surface first as explanation problems: the model or retrieval system starts producing outputs that are syntactically plausible but operationally wrong. That is often a signal that the curation layer failed to preserve provenance, freshness, or semantic consistency.
Domain and Governance Relevance
In AI security and identity-adjacent workflows, data preparation and curation is where trust in the data supply chain is established or lost. This matters most when curated datasets include access logs, user attributes, secrets metadata, or machine-generated content that will influence authorization decisions, agent behavior, or retrieval responses. The governance question is not only whether the data is usable, but whether it is appropriate for the intended control purpose.
For NHI and agentic AI environments, curation can determine whether a system sees accurate records of service accounts, API keys, certificates, or delegated permissions. If those records are incomplete or mislabeled, inventory, rotation, and offboarding processes become less reliable. NHIMG treats this as a data trust problem as much as a model-quality problem: weak curation can undermine identity visibility, runtime assurance, and the audit trail needed to explain automated actions.
That is why data curation should be treated as part of governance, not just preprocessing. The security value comes from preserving provenance, integrity, and scope as data moves from source systems into analytics or model pipelines.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Non-Human Identity Top 10 address the attack surface, NIST AI RMF, NIST AI 600-1 and CIS Controls v8 set the technical controls, and ISO/IEC 42001:2023 define the regulatory obligations.
| Framework | Control / Reference | Relevance |
|---|---|---|
| NIST AI RMF | MAP — Measure, Assess, and Mitigate | Curation quality directly affects AI system risk before and during model use. |
| Recommendation — Use MAP to assess dataset quality and mitigate poisoning, bias, and provenance gaps before training. | ||
| NIST AI 600-1 | 3 — Data Governance and Management | The term centers on preparing and governing data used in AI workflows. |
| Recommendation — Establish data governance controls that verify provenance, quality, and intended use for curated datasets. | ||
| ISO/IEC 42001:2023 | 8 — Operation | Data preparation is an operational AI process that needs defined controls and accountability. |
| Recommendation — Operationalise curation with documented ownership, review, and change handling for AI data pipelines. | ||
| OWASP Non-Human Identity Top 10 | NHI-01 — Inventory and Ownership | Curated data often includes service-account and machine-identity records that require reliable inventory. |
| Recommendation — Maintain accurate ownership and inventory records for machine-identity data used in automated systems. | ||
| CIS Controls v8 | 8 — Audit Log Management | Curated datasets should preserve traceable provenance and change history for security review. |
| Recommendation — Preserve and review logs that show how source data was transformed, filtered, and loaded into pipelines. | ||