<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Models From First Principles on Programmer.ie</title>
    <link>http://programmer.ie/books/models-from-first-principles/</link>
    <description>Recent content in Models From First Principles on Programmer.ie</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 22 Aug 2026 01:18:00 +0100</lastBuildDate>
    <atom:link href="http://programmer.ie/books/models-from-first-principles/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Models From First Principles 08: Preference Rankers — Learning Which Answer Is Better</title>
      <link>http://programmer.ie/books/models-from-first-principles/08-chapter/</link>
      <pubDate>Sat, 22 Aug 2026 01:18:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/08-chapter/</guid>
      <description>&lt;h1 id=&#34;preference-rankers--learning-which-answer-is-better&#34;&gt;Preference Rankers — Learning Which Answer Is Better&lt;/h1&gt;&#xA;&lt;p&gt;So far in &lt;strong&gt;Models From First Principles&lt;/strong&gt;, we have mostly trained models by telling them what the answer should be.&lt;/p&gt;&#xA;&lt;p&gt;MR.Q took a context and a response and produced a number:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;context + response&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      model&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      0.82&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;That number might mean quality.&lt;/p&gt;&#xA;&lt;p&gt;Or usefulness.&lt;/p&gt;&#xA;&lt;p&gt;Or reward.&lt;/p&gt;&#xA;&lt;p&gt;But there is an awkward question hiding underneath that architecture:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Where did the 0.82 come from?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 08: Which Model Should You Use? MR.Q, EBT, SICQL, HRM, Tiny and PACS Compared</title>
      <link>http://programmer.ie/books/models-from-first-principles/15-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 15:11:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/15-chapter/</guid>
      <description>&lt;h1 id=&#34;which-model-should-you-use-mrq-ebt-sicql-hrm-tiny-and-pacs-compared&#34;&gt;Which Model Should You Use? MR.Q, EBT, SICQL, HRM, Tiny and PACS Compared&lt;/h1&gt;&#xA;&lt;p&gt;This is the final post in &lt;strong&gt;Models From First Principles&lt;/strong&gt;.&lt;/p&gt;&#xA;&lt;p&gt;The earlier posts asked a sequence of architectural questions:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;how do we score a context-response pair?&lt;/li&gt;&#xA;&lt;li&gt;when is one scalar no longer enough?&lt;/li&gt;&#xA;&lt;li&gt;when should Q, V and policy become explicit components?&lt;/li&gt;&#xA;&lt;li&gt;when is one forward pass insufficient?&lt;/li&gt;&#xA;&lt;li&gt;when does recurrence help?&lt;/li&gt;&#xA;&lt;li&gt;when does hierarchy help?&lt;/li&gt;&#xA;&lt;li&gt;when is a smaller recursive model a better trade-off?&lt;/li&gt;&#xA;&lt;li&gt;when should attention or a sparse autoencoder be added?&lt;/li&gt;&#xA;&lt;li&gt;when should we change the optimizer rather than the model?&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;This post asks the question that matters when building a real system:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 07: PACS — Building an Optimizer From Gradient Statistics</title>
      <link>http://programmer.ie/books/models-from-first-principles/07-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 15:05:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/07-chapter/</guid>
      <description>&lt;h1 id=&#34;pacs--building-an-optimizer-from-gradient-statistics&#34;&gt;PACS — Building an Optimizer From Gradient Statistics&lt;/h1&gt;&#xA;&lt;p&gt;So far in &lt;strong&gt;Models From First Principles&lt;/strong&gt;, every post has asked some version of the same question:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;What should the model compute?&lt;/p&gt;&lt;/blockquote&gt;&#xA;&lt;p&gt;MR.Q gave us a scalar quality estimate.&lt;/p&gt;&#xA;&lt;p&gt;EBT split one shared representation into Q, V and Policy.&lt;/p&gt;&#xA;&lt;p&gt;SICQL made those heads explicit, replaceable components.&lt;/p&gt;&#xA;&lt;p&gt;HRM introduced repeated computation over fast and slow latent states.&lt;/p&gt;&#xA;&lt;p&gt;Tiny compressed iterative refinement into one recursive latent state.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 06: Inside Tiny — Residual Blocks, Attention and Sparse Autoencoders</title>
      <link>http://programmer.ie/books/models-from-first-principles/06-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 15:00:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/06-chapter/</guid>
      <description>&lt;h1 id=&#34;inside-tiny-residual-blocks-attention-and-sparse-autoencoders&#34;&gt;Inside Tiny: Residual Blocks, Attention and Sparse Autoencoders&lt;/h1&gt;&#xA;&lt;p&gt;In the previous post, we built a compact recursive model around one idea:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;context + candidate + latent state&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;              ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;          projection&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;              ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;         reusable core&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;              ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;       proposed update&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;              ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      z ← z + α · update&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;              ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;            repeat&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;That architecture looked more sophisticated than MR.Q, EBT or SICQL because it introduced recurrence.&lt;/p&gt;&#xA;&lt;p&gt;But the central idea of this series is that a model stops looking mysterious when we keep opening it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 05: Tiny — Recursive Reasoning With a Small Neural Network</title>
      <link>http://programmer.ie/books/models-from-first-principles/05-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 14:55:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/05-chapter/</guid>
      <description>&lt;h1 id=&#34;tiny--recursive-reasoning-with-a-small-neural-network&#34;&gt;Tiny — Recursive Reasoning With a Small Neural Network&lt;/h1&gt;&#xA;&lt;p&gt;The previous post introduced a much more ambitious architecture.&lt;/p&gt;&#xA;&lt;p&gt;Instead of taking one representation and predicting from it once, the &lt;strong&gt;Hierarchical Reasoning Model&lt;/strong&gt; repeatedly updated two latent states:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;input&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;low-level state&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓ ↓ ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;high-level state&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;repeat&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;That gave us something genuinely new:&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;computation could continue without adding a new set of parameters for every step.&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 04: HRM — Hierarchical Reasoning With Fast and Slow Recurrent State</title>
      <link>http://programmer.ie/books/models-from-first-principles/04-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 14:48:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/04-chapter/</guid>
      <description>&lt;h1 id=&#34;hrm--hierarchical-reasoning-with-fast-and-slow-recurrent-state&#34;&gt;HRM — Hierarchical Reasoning With Fast and Slow Recurrent State&lt;/h1&gt;&#xA;&lt;p&gt;The previous models in this series were mostly &lt;strong&gt;one-pass models&lt;/strong&gt;.&lt;/p&gt;&#xA;&lt;p&gt;MR.Q took two embeddings and produced one score.&lt;/p&gt;&#xA;&lt;p&gt;EBT kept the same basic structure but added several heads.&lt;/p&gt;&#xA;&lt;p&gt;SICQL made those heads explicit components.&lt;/p&gt;&#xA;&lt;p&gt;The architecture grew, but the shape of the computation was still familiar:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;input&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;encoder&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;representation&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;heads&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;outputs&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;HRM changes the question.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 03: SICQL — Building a Model From Q, V and Policy Networks</title>
      <link>http://programmer.ie/books/models-from-first-principles/03-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 14:44:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/03-chapter/</guid>
      <description>&lt;h1 id=&#34;sicql--building-a-model-from-q-v-and-policy-networks&#34;&gt;SICQL — Building a Model From Q, V and Policy Networks&lt;/h1&gt;&#xA;&lt;p&gt;In the previous post we took the MR.Q idea and expanded it into something richer.&lt;/p&gt;&#xA;&lt;p&gt;Instead of asking one question of a shared representation, EBT asked several:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;How good is this state-action pair?      -&amp;gt; Q&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;How good is the state more generally?    -&amp;gt; V&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;What action should be preferred?         -&amp;gt; Policy&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;How much better is Q than V?              -&amp;gt; Advantage&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;That already gave us a more expressive system.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 02: EBT — From One Score to Q, V, Policy and Advantage</title>
      <link>http://programmer.ie/books/models-from-first-principles/02-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 14:39:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/02-chapter/</guid>
      <description>&lt;h1 id=&#34;ebt--from-one-score-to-q-v-policy-and-advantage&#34;&gt;EBT — From One Score to Q, V, Policy and Advantage&lt;/h1&gt;&#xA;&lt;p&gt;In the previous post we built MR.Q: a small model that takes a context embedding and a response embedding, combines them, and predicts one scalar.&lt;/p&gt;&#xA;&lt;p&gt;That architecture is useful because it is brutally simple:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;context embedding&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        +&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;response embedding&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;     encoder&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;   representation z&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    predictor&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        ↓&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      Q value&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;But one scalar eventually becomes restrictive.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 01: MR.Q — Building a Neural Quality Model From Two Embeddings</title>
      <link>http://programmer.ie/books/models-from-first-principles/01-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 14:33:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/01-chapter/</guid>
      <description>&lt;h1 id=&#34;mrq--building-a-neural-quality-model-from-two-embeddings&#34;&gt;MR.Q — Building a Neural Quality Model From Two Embeddings&lt;/h1&gt;&#xA;&lt;p&gt;In the previous post, we established the core idea behind this series:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;A complicated model becomes understandable when you recursively decompose it into smaller models, blocks, layers and tensor operations.&lt;/p&gt;&lt;/blockquote&gt;&#xA;&lt;p&gt;Now we build the first real model.&lt;/p&gt;&#xA;&lt;p&gt;Not a transformer.&lt;/p&gt;&#xA;&lt;p&gt;Not a giant language model.&lt;/p&gt;&#xA;&lt;p&gt;Not an agent.&lt;/p&gt;&#xA;&lt;p&gt;A scorer.&lt;/p&gt;&#xA;&lt;p&gt;We will take two embeddings:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;context embedding&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;response embedding&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;combine them, encode the relationship between them, and predict one scalar:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Models From First Principles 00: The Model Inside the Model</title>
      <link>http://programmer.ie/books/models-from-first-principles/00-chapter/</link>
      <pubDate>Sat, 08 Aug 2026 14:27:00 +0100</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/00-chapter/</guid>
      <description>&lt;h1 id=&#34;the-model-inside-the-model&#34;&gt;The Model Inside the Model&lt;/h1&gt;&#xA;&lt;p&gt;This is the first post in &lt;strong&gt;Models From First Principles&lt;/strong&gt;.&lt;/p&gt;&#xA;&lt;p&gt;The previous &lt;strong&gt;PyTorch: Zero to Hero&lt;/strong&gt; series worked from the bottom up.&lt;/p&gt;&#xA;&lt;p&gt;We started with tensors.&lt;/p&gt;&#xA;&lt;p&gt;Then gradients.&lt;/p&gt;&#xA;&lt;p&gt;Then &lt;code&gt;nn.Module&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Then data pipelines, convolution, attention, debugging, performance and finally a small GPT-style language model built from scratch.&lt;/p&gt;&#xA;&lt;p&gt;That series answered:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;What are the pieces?&lt;/p&gt;&lt;/blockquote&gt;&#xA;&lt;p&gt;This series asks a different question:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;What happens when we start composing those pieces into increasingly sophisticated models?&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>http://programmer.ie/books/models-from-first-principles/_work/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>http://programmer.ie/books/models-from-first-principles/_work/</guid>
      <description>&lt;h1 id=&#34;models-from-first-principles--working-ledger&#34;&gt;Models From First Principles — Working Ledger&lt;/h1&gt;&#xA;&lt;h2 id=&#34;book-intention&#34;&gt;Book intention&lt;/h2&gt;&#xA;&lt;p&gt;Understand modern AI models by opening the abstractions and building the mechanisms in layers, while keeping the mathematics, architecture, optimization, and working code connected.&lt;/p&gt;&#xA;&lt;p&gt;The review question is not merely whether each chapter is well written. It is whether each chapter does the job it is supposed to do &lt;strong&gt;at this point in the sequence&lt;/strong&gt; and whether the sequence leaves a useful model or mechanism missing.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
