AI Fundamentals for Governance Professionals covers the conceptual building blocks behind artificial intelligence: the different families of AI systems, how models actually learn, why they resist inspection from the outside, and the everyday vocabulary practitioners use when building and deploying them. This literacy matters because governance, compliance, legal and risk professionals are increasingly asked to assess, approve or challenge AI systems they did not build themselves, and a rule-based tool, a trained classifier and a generative model fail in fundamentally different ways that no policy language alone can paper over. The single most useful mental model here is the autonomy spectrum: nearly every governance question, from how much testing a system needs to how much a human must review before it acts, ultimately reduces to how much the system is allowed to do without a person checking its work. This sheet stays deliberately non-mathematical and does not cover specific laws or regulatory frameworks, which live in their own dedicated resources, so it can serve as the shared vocabulary underneath all of them.
What This Cheat Sheet Covers
This topic spans 10 focused tables and 63 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
A jump-to index of every table row in this cheat sheet.
An interactive map of every table and concept in this topic.
Table 1: The AI Family Tree β Core System Types
Every AI system a governance professional will encounter falls into one of a handful of broad families, and knowing which one you're looking at is the first step in any assessment. These categories nest inside one another, from the oldest and simplest (explicit rules) to the newest and least predictable (generative models built on foundation models).
| System Type | Example | Description |
|---|---|---|
IF patient has fever AND cough AND difficulty breathing THEN flag possible pneumonia (a MYCIN-style diagnostic rule) | Behavior comes from explicit if-then logic written by human experts, not learned from data. β’ Every decision traces back to the specific rule that fired, making it highly auditable β’ Cannot handle situations its rules don't cover. | |
A product-recommendation model learns from a shopper's past purchases rather than following a fixed catalog of rules | The system learns statistical patterns from historical data instead of following hand-coded logic; machine learning is a subset of AI, and its accuracy generally improves as more data is fed in. | |
A neural network with dozens of stacked layers reads raw pixels to sort photos into "pizza," "burger" or "taco" without a human first specifying which visual features to look for | A subset of machine learning that uses multi-layered ("deep") neural networks to automatically discover relevant features in raw, unstructured data such as images or text, instead of relying on human-engineered features. | |
A user asks a chatbot to draft a one-page policy memo and receives new, original text rather than a retrieved document | A subset of deep learning, typically built on foundation models, that creates new content β text, images, audio, code β rather than only classifying or predicting on existing data. |