AI Dictionary of Terms

High-Risk AI System

A specific legal classification under regulatory frameworks like the EU AI Act for AI systems that pose significant threats to health, safety, or fundamental rights, subjecting them to strict compliance obligations, conformity assessments, and monitoring before they can be placed on the market.

The Simple Version

Just as the FDA classifies medical devices into different risk categories (a band-aid is low risk, a pacemaker is high risk), the AI Act classifies AI systems. A “High-Risk AI System” is the pacemaker equivalent. If your AI is used in hiring, law enforcement, critical infrastructure, or education, it is “high-risk.” You can’t just sell it; you have to prove it’s safe, fair, and heavily monitored before it can be used.

Detailed Explanation

The concept of a “High-Risk AI System” is the cornerstone of the risk-based regulatory approach adopted by the EU AI Act and similar global frameworks.

Two Main Categories of High-Risk AI:

  1. AI in Regulated Products: AI systems used as safety components in products already covered by EU harmonization legislation (e.g., medical devices, cars, aviation, toys).
  2. AI in Critical Areas: Standalone AI systems deployed in eight specific critical areas:
    • Biometric identification and categorization.
    • Critical infrastructure management (water, gas, electricity).
    • Education and vocational training (e.g., grading, admissions).
    • Employment and worker management (e.g., resume screening, performance evaluation).
    • Access to essential private and public services (e.g., credit scoring, emergency dispatch).
    • Law enforcement and migration/asylum management.
    • Administration of justice and democratic processes.

Mandatory Requirements for High-Risk AI:

Key Characteristics

Business Context

Classifying an AI system as “high-risk” fundamentally changes the go-to-market strategy and operational costs:

Real-World Analogy

Building a skyscraper vs. building a garden shed. A garden shed (low-risk AI) just needs to follow basic zoning rules. A skyscraper (high-risk AI) requires architectural blueprints, structural engineering certifications, fire safety inspections, and ongoing maintenance logs before anyone is allowed inside.

Code Example

# Conceptual: High-Risk AI Classification Logic (Based on EU AI Act Annex III)
CRITICAL_AREAS = [
    "biometrics", "critical_infrastructure", "education", 
    "employment", "essential_services", "law_enforcement", 
    "justice", "democratic_processes"
]

def classify_ai_system(use_case, is_safety_component):
    """Determines if an AI system is classified as High-Risk."""
    
    # Category 1: Safety component in regulated products
    if is_safety_component:
        return "High-Risk (Regulated Product)"
        
    # Category 2: Standalone AI in critical areas
    if use_case in CRITICAL_AREAS:
        return "High-Risk (Critical Area)"
        
    return "Non-High-Risk (Minimal or Limited Risk)"

# Test cases
print(classify_ai_system("resume_screening", False)) 
# Output: High-Risk (Critical Area) -> 'employment'

print(classify_ai_system("video_game_npc", False)) 
# Output: Non-High-Risk (Minimal or Limited Risk)

Common Misconceptions

Sources & Further Reading