Risk Classification

Risk classification sorts an AI use case by potential harm, autonomy, domain, data sensitivity, reversibility, and exposure. It determines the required evidence for compliance, human oversight, security review, monitoring, and auditability. The unit is the use case, not the model architecture.

A classification record

A classification record should be short enough to complete but specific enough to trigger controls:

system: hiring_screening_ranker
decision_impact: employment_opportunity
autonomy: recommendation_to_human_reviewer
personal_data: resumes, work_history, inferred_skills
affected_users: applicants
reversibility: limited_after_rejection_notice
jurisdictions: ["EU", "US"]
classification:
  eu_ai_act: high_risk_candidate_employment_context
  internal: tier_3_high_impact
required_controls:
  - fairness_evaluation
  - data_governance_review
  - human_oversight
  - audit_logging
  - appeal_process

For contrast, an internal product-title generator may still need policy enforcement and security controls, but it usually does not require the same fairness, appeal, and regulated-decision evidence as employment screening.

Sourced artifact

The EU AI Act uses a risk-based structure that includes prohibited practices, high-risk systems, and other transparency or general obligations. NIST AI RMF is not a law, but it gives a complementary operating model: map context, measure risks, manage responses, and govern the process. A practical classifier can combine both:

QuestionIf yes, likely control
Is the use prohibited by law or internal policy?Do not launch
Is it in a high-impact domain such as employment, education, credit, health, or essential services?High-risk review
Does it use sensitive or personal data?Privacy and PII review
Can it act externally through tools?Agency and authorization review
Can users appeal or reverse the outcome?Oversight and dispute process

Caveats

Classification can go stale. A low-risk prototype becomes high-risk when connected to customer records, tools, or regulated workflows. Reclassify on major model and knowledge base changes, geography expansion, new data categories, or a shift from advice to automated action.

References