AI Dictionary of Terms

AI Act

The world’s first comprehensive legal framework regulating artificial intelligence, primarily referring to the European Union’s AI Act, which classifies AI systems by risk level and imposes strict obligations on high-risk applications to ensure safety and fundamental rights.

The Simple Version

Just as cars have safety standards (seatbelts, airbags) before they can be sold, the AI Act sets the rules for selling and using AI. It says: “If your AI is low-risk (like a spam filter), you can do what you want. But if it’s high-risk (like a resume screener or a medical diagnostic tool), you must prove it’s safe, fair, and transparent before you can use it.”

Detailed Explanation

The EU AI Act (and similar emerging legislation globally) adopts a risk-based approach to regulation. It categorizes AI systems into four tiers:

  1. Unacceptable Risk: Banned entirely (e.g., social scoring by governments, real-time remote biometric identification in public spaces with narrow exceptions).
  2. High Risk: Heavily regulated (e.g., AI in critical infrastructure, education, employment, law enforcement). Requires rigorous testing, human oversight, and high-quality data.
  3. Limited Risk: Subject to transparency obligations (e.g., chatbots must disclose they are AI; deepfakes must be labeled).
  4. Minimal Risk: No restrictions (e.g., AI-enabled video games, spam filters).

Key Obligations for High-Risk AI:

Key Characteristics

Business Context

The AI Act is the “GDPR moment” for artificial intelligence, setting the global standard for AI regulation:

Real-World Analogy

The FDA approval process for drugs. You can’t just sell a new chemical to the public; you have to prove it’s safe and effective through rigorous testing. The AI Act does the same for algorithms that impact people’s lives.

Code Example

# Conceptual: EU AI Act Risk Classification Logic
def classify_ai_risk(use_case, data_type, impact_level):
    """
    Simplified logic to classify an AI system under the EU AI Act framework.
    """
    banned_use_cases = ["social_scoring", "subliminal_manipulation"]
    high_risk_domains = ["employment", "education", "critical_infrastructure", "law_enforcement"]
    
    if use_case in banned_use_cases:
        return "Unacceptable Risk (Banned)"
        
    if use_case in high_risk_domains and impact_level == "significant":
        return "High Risk (Requires Conformity Assessment)"
        
    if data_type == "biometric" and use_case == "identification":
        return "High Risk (Requires Conformity Assessment)"
        
    if use_case in ["chatbot", "deepfake"]:
        return "Limited Risk (Transparency Obligations)"
        
    return "Minimal Risk (No Restrictions)"

# Test cases
print(classify_ai_risk("spam_filter", "text", "low")) 
# Output: Minimal Risk (No Restrictions)

print(classify_ai_risk("resume_screener", "personal_data", "significant")) 
# Output: High Risk (Requires Conformity Assessment)

Common Misconceptions

Sources & Further Reading