§1.1–1.2Who Should Read This Book? · Historical Trends

Intro DL pp. 8–12 · ~10 min read

Before the history, the book closes its opening argument with two famous figures that place deep learning on the map of AI disciplines.

Where deep learning sits (fig 1.4)

Deep learning is a kind of representation learning , which is a kind of machine learning , which is one approach (of several) to AI. Each ring below carries an example technology:

AIExample:Knowledge basesMachine learningExample:Logistic regressionRepresentation learningExample:Shallow autoencodersDeep learningExample:MLPs

Fig 1.4 (recreated) — each discipline is a strict subset of the one containing it, and each ring holds an example technology.

The placement matters: a knowledge base is AI without learning; logistic regression learns but consumes hand-made features; a shallow autoencoder learns its representation but only one step of it; an MLP learns representations of representations.

What each discipline learns (fig 1.5)

The same story as a set of flowcharts. Shaded boxes are the components able to learn from data — watch the shading climb as you move right:

Representation learningInputHand-designedprogramOutputRule-based systemsInputHand-designedfeaturesMapping fromfeaturesOutputClassic machine learningInputFeaturesMapping fromfeaturesOutputInputSimplefeaturesAdditional layersof more abstractfeaturesMapping fromfeaturesOutputDeep learning

Fig 1.5 (recreated) — hatched boxes are components learned from data. Rule-based systems learn nothing; classic ML learns only the features→output mapping; representation learning also learns the features; deep learning stacks learned features on learned features.

§1.1 Who should read this book?

The book targets two audiences: university students (undergraduate or graduate) entering machine learning or starting deep-learning/AI research, and software engineers without an ML/statistics background who want to acquire one quickly and use deep learning in a product — a field already proven useful in computer vision, speech and audio, NLP, robotics, bioinformatics and chemistry, video games, search, online advertising and finance.

The three-part organization serves both audiences, and you are encouraged to skip what you already know:

  • Part I — applied math and ML fundamentals. Skip it if you know linear algebra, probability and basic ML.
  • Part II — the established, essentially solved deep-learning technologies. Stop here if you just want to build working systems.
  • Part III — the more speculative research ideas widely believed to matter for the field’s future.

One assumption is made of everyone: a computer-science background — programming, a basic grasp of computational performance and complexity theory, introductory calculus, and some graph-theory terminology.

The book’s own roadmap (fig 1.6) shows which chapters are prerequisites for which — an arrow means “read the tail before the head”:

1. IntroductionPart I: Applied Math and Machine Learning Basics2. Linear Algebra3. Probability andInformation Theory4. NumericalComputation5. Machine LearningBasicsPart II: Deep Networks: Modern Practices6. Deep FeedforwardNetworks7. Regularization8. Optimization9. CNNs10. RNNs11. PracticalMethodology12. ApplicationsPart III: Deep Learning Research13. Linear FactorModels14. Autoencoders15. RepresentationLearning16. StructuredProbabilistic Models17. Monte CarloMethods19. Inference18. PartitionFunction20. Deep GenerativeModels

Fig 1.6 (recreated) — an arrow means the tail chapter is prerequisite material for the head chapter. The sidebar of this site follows the same three-part structure.

Note what the arrows say: within Part II, everything flows from chapter 6 — regularization, optimization, CNNs and RNNs are four parallel elaborations of the feedforward network, and all four feed the two practice-facing chapters (11, 12). Part III fans out again: chapters 13–15 extend the representation-learning story, while 16 → 17 → 18 → 19 build the probabilistic machinery that chapter 20 assembles into deep generative models.

The book closes its introduction by promising a history told through four key trends, each expanded in the coming sections:

  1. Many names, waxing and waning: deep learning has a long history under different philosophical banners — its popularity has risen and fallen twice before (§1.2.1).
  2. More data → more useful: deep learning becomes more valuable as training data grows (§1.2.2).
  3. Bigger models over time: hardware and software infrastructure keep allowing larger networks (§1.2.3).
  4. Harder tasks, higher accuracy: deep learning solves increasingly complicated applications with increasing precision (§1.2.4).

Check yourself — the map of AI and the book's plan

1.Order these from most general to most specific, per fig 1.4.

2.In fig 1.5, what distinguishes representation learning from classic machine learning?

3.A software engineer wants to ship a working deep-learning feature and already knows linear algebra, probability and basic ML. Per §1.1, what should they read?

4.In the fig 1.6 roadmap, why do chapters 7–10 all point at chapters 11 and 12?

5.Which of these is NOT one of §1.2's four historical trends?

5 questions