Learn With Nathan Sign in

The Map of AI

AI is not one technology arranged on a ladder from simple to smart; it is a landscape of goals, methods, model families, and systems that frequently overlap.

Chapter 4

The Map of AI

AI is not one technology arranged on a ladder from simple to smart; it is a landscape of goals, methods, families, and systems that frequently overlap.

A chief executive asks four teams for an inventory of artificial intelligence projects. The analytics group lists forecasting models. The service group lists a generative assistant. Operations includes a scheduling optimizer built from rules. The product team reports a recommendation engine. One manager objects: “The scheduling tool isn't really AI. It doesn't learn.” Another says the forecasting models are “just statistics.” A third uses AI as a synonym for chatbots.

They are not merely arguing over vocabulary. Their map determines which projects receive investment, scrutiny, talent, and governance. A map that includes only the newest tools will miss mature systems already influencing decisions. A map that labels all software AI will be too broad to guide action.

This chapter supplies a durable map. It separates four questions that marketing language often mixes: What goal is the system pursuing? What method produces the behavior? What kind of model is involved? How is the model assembled into a real application? The categories will overlap, because the technology overlaps. That is a feature of the map, not a flaw.

4.1

A landscape, not a ladder

A familiar diagram places artificial intelligence in a large circle, inside it, inside machine learning, and generative AI at the center. The diagram contains a useful truth: deep learning is a family of machine-learning approaches, and many prominent generative systems use deep . But perfect nesting creates several misconceptions.

Generative models existed before the current deep-learning era and are not limited to neural networks. Deep learning is used for non-generative tasks such as classification and detection. AI also includes approaches that do not learn from data, including search, planning, optimization, and explicit rules. A business application may combine all of them.

Overlapping landscape map with AI as a broad field containing symbolic methods and machine learning, deep learning within machine learning, generative approaches overlapping several areas, and applications combining elements across boundaries.
Figure 4.1 · The AI landscape, not the AI ladder. Categories describe different dimensions. Deep learning is within machine learning, while generative behavior and real applications cut across method boundaries.
Audiobook description

A broad shape labeled AI contains two large overlapping regions: explicit knowledge and search on the left, machine learning on the right. Deep learning sits inside machine learning. A band labeled generative approaches crosses part of the left and right regions. Several application icons sit across boundaries, showing that products combine methods.

The word AI is best treated as an umbrella for engineered systems that perform functions associated with perception, language, learning, reasoning, planning, recommendation, decision, content generation, or action. The umbrella is historically and institutionally shaped; its boundary changes. For practical work, the label should open a second question: which capabilities and methods are present here?

Plain English

Four coordinates on the map

Goal: what the system is trying to accomplish. Method: the procedure used, such as rules, search, optimization, or learning. Model family: the mathematical or computational structure. System: how models, data, software, people, and controls are assembled in use.

4.2

Two broad traditions: express the knowledge or learn the pattern

One long AI tradition asks people to express knowledge in a form a machine can manipulate. A rule might say that a claim above a certain value requires a second review. A knowledge representation might encode that Toronto is in Ontario and Ontario is in Canada, allowing a system to derive that Toronto is in Canada. A planner might search possible action sequences until it finds one that reaches a goal.

This family is often called symbolic AI because entities and relationships are represented with explicit symbols. Its strengths include traceable logic, direct use of expert knowledge, and predictable enforcement of clear constraints. Its weaknesses appear when rules become numerous, exceptions multiply, or relevant knowledge is difficult to articulate.

The other broad tradition asks a system to estimate useful patterns from data. Instead of writing every signal of fraud, developers give a learning examples and a performance objective. Training adjusts a model so that it performs better on the defined task. Tom Mitchell's classic formulation centers the relationship among task, experience, and performance.

Parallel paths show symbolic AI receiving human-written knowledge and search procedures, while machine learning receives examples and a performance measure; both produce outputs and can be combined.
Figure 4.2 · Express the knowledge or learn the pattern. Symbolic and learning approaches solve different parts of a problem and often work best together.
Audiobook description

Two parallel lanes produce a claim-routing result. The symbolic lane begins with expert rules and a search or inference procedure. The learning lane begins with past examples and a performance measure, then trains a model. The lanes join before the final output, illustrating a hybrid system.

The contrast is not absolute. A learning system contains human choices about data, objectives, architecture, and thresholds. A symbolic system can use probabilities or learn some components. A modern language application may use a neural model to interpret a request, a search system to retrieve documents, explicit rules to enforce permissions, and a conventional program to execute an action.

Where the shorthand breaks: “Rules versus learning” does not mean humans understand one system completely and understand nothing about the other. Large rule systems can behave unexpectedly through interactions. Learned systems can be inspected, tested, constrained, and explained to varying degrees. The distinction concerns how behavior is specified, not a binary of transparent versus mysterious.
4.3

Machine learning is organized by the signal available

Machine learning is not one algorithm. It is a large family of ways to improve performance through experience. A helpful first distinction asks what feedback the learner receives.

In supervised learning, examples are paired with target answers. Emails may be labeled spam or not spam. Transactions may be labeled fraudulent or legitimate. The learner estimates a relationship that can be applied to new cases.

In unsupervised learning, the data do not arrive with the desired answer for every example. The system may group similar customers, compress information, or identify unusual patterns. In self-supervised learning, the data provide their own training targets: hide part of an image and predict it, or hide a word and infer it from context. Much of modern foundation-model training uses objectives of this general kind.

In reinforcement learning, an agent takes actions, receives rewards or penalties, and learns a policy for choosing actions over time. The challenge is delayed consequence: an action that looks good now may lead to a poor result later.

Three lanes compare supervised learning from labeled answers, self-supervised or unsupervised learning from structure in data, and reinforcement learning from rewards after actions.
Figure 4.3 · Three broad learning signals. The difference is not the industry or data type; it is the information available to guide improvement.
Audiobook description

Three lanes begin with a learner. In the first, a teacher supplies examples with correct answers. In the second, parts of the data hide and reveal one another, allowing the learner to discover structure. In the third, an agent acts in an environment and receives rewards over time. Each lane labels the feedback signal available.

These categories can combine. A language model may be pretrained with a self-supervised prediction objective, then tuned on instruction-response examples, then further adapted using preference-based rewards. The resulting assistant did not learn in only one way.

Hype Check

Learning does not mean learning like a person

Machine learning means that a system's performance changes through a defined training process. It does not imply childhood, curiosity, lived experience, common sense, or autonomous self-improvement after deployment. Ask exactly what data, feedback, and update process are involved.

4.4

Neural networks and the meaning of “deep”

An artificial neural network is a computational model built from connected units arranged in layers. Inputs are transformed through weighted connections and nonlinear operations. During training, the weights are adjusted so the network produces more useful outputs.

The biological name is historical inspiration, not a claim that the model reproduces a brain. Artificial units omit nearly all the complexity of living neurons, bodies, development, and social experience. Calling a model neural tells us about a family of computational structures, not about consciousness.

Deep learning refers to neural networks with multiple processing layers that can learn representations at several levels of abstraction. A vision system might move from pixel patterns to edges, shapes, object parts, and categories. A language system develops distributed representations useful for relationships among tokens and contexts. The 2015 review by , , and emphasized this multilayer representation learning.

Nested diagram places deep learning inside neural networks inside machine learning inside AI, while arrows show deep learning can support discriminative, generative, and reinforcement-learning tasks.
Figure 4.4 · Where deep learning fits—and where it travels. Deep learning is a subset by method, while its uses span several kinds of task.
Audiobook description

Four nested boxes read AI, machine learning, neural networks, and deep learning. From the deep-learning box, three arrows travel outward to classification and prediction, generation, and reinforcement-learning agents. The nesting answers what it is; the arrows answer what it can be used to do.

Depth made it practical to learn complex representations from large amounts of raw or lightly processed data, but it is not automatically the best choice. For small structured datasets, a simpler model can be cheaper, easier to maintain, and equally accurate. Explicit rules remain appropriate for non-negotiable policy constraints. Method should follow the problem, evidence, and operating environment.

AI in the Wild

A loan workflow uses several layers of the map

A conventional formula calculates ratios. A gradient-boosted model estimates default risk. A document model extracts fields from applications. Rules enforce eligibility and prohibited factors. A generative assistant drafts a plain-language explanation for human review. One workflow contains multiple model families and non-AI software.

4.5

Predicting a label and generating a new sample

Another useful axis distinguishes models by what they learn and produce. A discriminative model learns a boundary or relationship useful for predicting a target from an input: Is this transaction likely fraudulent? Which product category fits this image? What demand should we expect next week?

A generative model learns enough about the structure or distribution of data to produce new samples or continuations with related characteristics. It may generate text, images, audio, video, molecular structures, or synthetic records. NIST's glossary describes generative AI as a class of models that emulates characteristics of input data to produce derived synthetic content.

A discriminative model maps an input document to a category, while a generative model uses learned structure and a prompt to create a new document; both are shown as predictions of different forms.
Figure 4.5 · Classify the observed or generate a possible new sample. Both approaches estimate patterns, but their outputs and evaluation needs differ.
Audiobook description

The left lane sends an existing document through a model to one of three category boxes. The right lane sends a prompt through a model to a newly created document. Under the left is “which label fits?” Under the right is “what sample could plausibly follow?”

The boundary can blur. A language model generates by predicting a probability distribution over the next token. A generative model can support classification by comparing likely completions. A product may use generation only as an interface around a predictive system.

Evaluation differs sharply. A fraud classification can often be compared with later confirmed outcomes, though labels may be delayed or imperfect. A generated strategy memo has many possible acceptable answers. It requires evaluation of factual support, relevance, novelty, tone, policy compliance, and downstream use. The freedom that makes generation valuable also makes simple right-or-wrong scoring less adequate.

Where the shorthand breaks: Generative AI does not create from nothing. Its outputs are conditioned by learned patterns, prompts, system instructions, retrieved material, tools, and sampling choices. “New” describes the produced arrangement, not independence from data, design, or context.
4.6

The product is usually a combination

Taxonomies are useful for learning and dangerous for procurement. A vendor may say “our solution uses generative AI” as though that phrase specifies the system. It does not tell you which model, what data flows through it, whether information is retrieved, which rules constrain output, what software executes actions, or who reviews consequential results.

Consider an assistant that handles an employee's request to book travel. A language model interprets the request. A retrieval system obtains policy. Explicit rules reject prohibited options. A search service queries availability. An optimizer balances time and cost. Conventional code calls booking systems. A human approves an exception. Logging and monitoring support oversight. The assistant's conversational surface is only the visible layer.

Layered travel assistant architecture combines conversational interface, generative model, retrieval and search, rules and optimization, enterprise software tools, data, human approval, and governance.
Figure 4.6 · A hybrid AI application stack. Real value and risk emerge from the interaction among learned models, explicit logic, software tools, data, people, and governance.
Audiobook description

A vertical stack begins with the employee conversation. Below are a generative model, retrieval and search, policy rules and optimization, booking software tools, and enterprise data. Human approval and governance appear as rails running alongside every layer, not as a final decoration.

The most useful inventory therefore records capabilities and components rather than chasing labels. For each system: identify the business purpose, model families, learning methods, data sources, external tools, autonomy, affected people, human decision points, and monitoring. This description remains useful even when a fashionable term changes.

Decision Lens

Locate a system on the map

  • Which capability matters: perception, prediction, generation, reasoning, planning, optimization, or action?
  • Which behavior is governed by explicit rules, search, learned patterns, or a combination?
  • What training or feedback signal shaped each learned component?
  • Is the model discriminating among possibilities, generating a sample, or both?
  • Which non-model components determine the final business outcome?
Chapter close

Remember this

AI is an umbrella, not a product specification. Ask what capabilities, methods, models, and system components are present.

Symbolic systems express knowledge; learning systems estimate patterns. Useful applications often combine them.

Machine-learning categories reflect the feedback available. Supervised, self-supervised, unsupervised, and reinforcement learning can appear in one development process.

Deep learning is a method family, not a synonym for all AI. It uses multilayer neural networks to learn representations.

Generative is an output orientation, not a rung of intelligence. Generation overlaps with several model and learning families.

Four-coordinate worksheet maps an AI system by goal, method, model family, and surrounding system, ending in a precise one-sentence description rather than a generic AI label.
Figure 4.7 · The four-coordinate AI map. Describe a system through goal, method, model family, and assembly before deciding what evidence and controls it needs.
Audiobook description

Four rows form a worksheet. Goal asks what capability matters. Method asks whether rules, search, optimization, or learning produces behavior. Model family names the computational structure. System lists data, tools, people, and controls. The completed rows flow into one precise system description.

Five key terms

  • Symbolic AI
  • Machine learning
  • Deep learning
  • Generative model
  • Hybrid system

Reflection questions

  1. Which AI categories are used as synonyms in your organization, and what decisions become unclear as a result?
  2. Choose one AI product. Which parts are rules, learned models, search, optimization, conventional software, and human judgment?
  3. Where would a simpler method be more appropriate than a deep or generative model?

Register to read all chapters for free.

Use your name and email to unlock the complete and growing Academy library. No fee and no credit card required. You can close this window and keep reading this sample chapter.

By continuing, you agree to receive the account email needed to secure access. Already registered? Sign in.

More information