<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Deepmind on Ryan Orban</title><link>https://ryanorban.com/categories/deepmind/</link><description>Recent content in Deepmind on Ryan Orban</description><generator>Hugo</generator><language>en-us</language><managingEditor>me@ryanorban.com (Ryan Orban)</managingEditor><webMaster>me@ryanorban.com (Ryan Orban)</webMaster><copyright>Ryan Orban</copyright><lastBuildDate>Thu, 27 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://ryanorban.com/categories/deepmind/index.xml" rel="self" type="application/rss+xml"/><item><title>In-Context Reinforcement Learning with Algorithm Distillation</title><link>https://ryanorban.com/notes/algorithm-distillation/</link><pubDate>Thu, 27 Oct 2022 00:00:00 +0000</pubDate><author>me@ryanorban.com (Ryan Orban)</author><guid>https://ryanorban.com/notes/algorithm-distillation/</guid><description>&lt;h3 id="summary" class="scroll-mt-8 group"&gt;
 Summary
 
 &lt;a href="#summary"
 class="no-underline hidden opacity-50 hover:opacity-100 !text-inherit group-hover:inline-block"
 aria-hidden="true" title="Link to this heading" tabindex="-1"&gt;
 &lt;svg
 xmlns="http://www.w3.org/2000/svg"
 width="16"
 height="16"
 fill="none"
 stroke="currentColor"
 stroke-linecap="round"
 stroke-linejoin="round"
 stroke-width="2"
 class="lucide lucide-link w-4 h-4 block"
 viewBox="0 0 24 24"
&gt;
 &lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /&gt;
 &lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /&gt;
&lt;/svg&gt;

 &lt;/a&gt;
 
&lt;/h3&gt;
&lt;p&gt;Algorithm Distillation (AD), from DeepMind (Laskin et al., 2022), is a method for distilling entire reinforcement learning algorithms into a neural network by training it on sequences of RL learning histories. The core idea: if you expose a causal transformer to many episodes of an RL agent improving at a task, the transformer learns to predict the improving agent&amp;rsquo;s behavior — and this learned prediction generalizes to new tasks without any gradient updates.&lt;/p&gt;</description></item><item><title>Building Safer Dialogue Agents (DeepMind / Sparrow)</title><link>https://ryanorban.com/notes/deepmind-safer-dialogue-agents/</link><pubDate>Fri, 23 Sep 2022 00:00:00 +0000</pubDate><author>me@ryanorban.com (Ryan Orban)</author><guid>https://ryanorban.com/notes/deepmind-safer-dialogue-agents/</guid><description>&lt;h3 id="summary" class="scroll-mt-8 group"&gt;
 Summary
 
 &lt;a href="#summary"
 class="no-underline hidden opacity-50 hover:opacity-100 !text-inherit group-hover:inline-block"
 aria-hidden="true" title="Link to this heading" tabindex="-1"&gt;
 &lt;svg
 xmlns="http://www.w3.org/2000/svg"
 width="16"
 height="16"
 fill="none"
 stroke="currentColor"
 stroke-linecap="round"
 stroke-linejoin="round"
 stroke-width="2"
 class="lucide lucide-link w-4 h-4 block"
 viewBox="0 0 24 24"
&gt;
 &lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /&gt;
 &lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /&gt;
&lt;/svg&gt;

 &lt;/a&gt;
 
&lt;/h3&gt;
&lt;p&gt;DeepMind&amp;rsquo;s post describes Sparrow, their research dialogue agent designed to be safe, helpful, and accurate. Published in September 2022, it&amp;rsquo;s one of the first detailed public accounts of using RLHF (reinforcement learning from human feedback) combined with explicit rules to train conversational AI that avoids harmful outputs.&lt;/p&gt;</description></item><item><title>Introduction to Graph Neural Networks with JAX/jraph</title><link>https://ryanorban.com/notes/jax-jraph-gnn/</link><pubDate>Thu, 04 Aug 2022 00:00:00 +0000</pubDate><author>me@ryanorban.com (Ryan Orban)</author><guid>https://ryanorban.com/notes/jax-jraph-gnn/</guid><description>&lt;h3 id="summary" class="scroll-mt-8 group"&gt;
 Summary
 
 &lt;a href="#summary"
 class="no-underline hidden opacity-50 hover:opacity-100 !text-inherit group-hover:inline-block"
 aria-hidden="true" title="Link to this heading" tabindex="-1"&gt;
 &lt;svg
 xmlns="http://www.w3.org/2000/svg"
 width="16"
 height="16"
 fill="none"
 stroke="currentColor"
 stroke-linecap="round"
 stroke-linejoin="round"
 stroke-width="2"
 class="lucide lucide-link w-4 h-4 block"
 viewBox="0 0 24 24"
&gt;
 &lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /&gt;
 &lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /&gt;
&lt;/svg&gt;

 &lt;/a&gt;
 
&lt;/h3&gt;
&lt;p&gt;This Google Colab notebook from DeepMind&amp;rsquo;s educational materials is an interactive introduction to Graph Neural Networks (GNNs) using JAX and jraph — DeepMind&amp;rsquo;s graph neural network library built on JAX. The notebook covers the core GNN paradigm: message passing, where nodes aggregate information from neighbors iteratively, with the aggregated representations used for downstream tasks like node classification, edge prediction, or graph-level classification.&lt;/p&gt;</description></item><item><title>A Generalist Agent</title><link>https://ryanorban.com/notes/gato-generalist-agent/</link><pubDate>Fri, 13 May 2022 00:00:00 +0000</pubDate><author>me@ryanorban.com (Ryan Orban)</author><guid>https://ryanorban.com/notes/gato-generalist-agent/</guid><description>&lt;h3 id="summary" class="scroll-mt-8 group"&gt;
 Summary
 
 &lt;a href="#summary"
 class="no-underline hidden opacity-50 hover:opacity-100 !text-inherit group-hover:inline-block"
 aria-hidden="true" title="Link to this heading" tabindex="-1"&gt;
 &lt;svg
 xmlns="http://www.w3.org/2000/svg"
 width="16"
 height="16"
 fill="none"
 stroke="currentColor"
 stroke-linecap="round"
 stroke-linejoin="round"
 stroke-width="2"
 class="lucide lucide-link w-4 h-4 block"
 viewBox="0 0 24 24"
&gt;
 &lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /&gt;
 &lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /&gt;
&lt;/svg&gt;

 &lt;/a&gt;
 
&lt;/h3&gt;
&lt;p&gt;This DeepMind paper by Scott Reed, Konrad Zolna, Emilio Parisotto, and 17 co-authors including Nando de Freitas presents Gato, a single transformer model that operates as a generalist policy across over 600 diverse tasks. Gato uses a unified tokenization scheme to represent text, images, discrete actions, and continuous control signals (robot joint torques) as a flat sequence, then applies a standard autoregressive decoder to predict the next token. The same network weights handle Atari gameplay, real robotic arm manipulation, image captioning, question answering, and dialogue — selecting output type based on context.&lt;/p&gt;</description></item><item><title>Flamingo: A Visual Language Model for Few-Shot Learning</title><link>https://ryanorban.com/notes/flamingo-visual-language-model/</link><pubDate>Mon, 09 May 2022 00:00:00 +0000</pubDate><author>me@ryanorban.com (Ryan Orban)</author><guid>https://ryanorban.com/notes/flamingo-visual-language-model/</guid><description>&lt;h3 id="summary" class="scroll-mt-8 group"&gt;
 Summary
 
 &lt;a href="#summary"
 class="no-underline hidden opacity-50 hover:opacity-100 !text-inherit group-hover:inline-block"
 aria-hidden="true" title="Link to this heading" tabindex="-1"&gt;
 &lt;svg
 xmlns="http://www.w3.org/2000/svg"
 width="16"
 height="16"
 fill="none"
 stroke="currentColor"
 stroke-linecap="round"
 stroke-linejoin="round"
 stroke-width="2"
 class="lucide lucide-link w-4 h-4 block"
 viewBox="0 0 24 24"
&gt;
 &lt;path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" /&gt;
 &lt;path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" /&gt;
&lt;/svg&gt;

 &lt;/a&gt;
 
&lt;/h3&gt;
&lt;p&gt;Jean-Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, and colleagues at DeepMind introduce Flamingo, a family of Visual Language Models (VLMs) that achieve strong few-shot performance on vision-language tasks by efficiently bridging a frozen vision encoder with a frozen large language model through lightweight cross-attention layers. The core insight is that separately pre-trained vision and language experts can be kept frozen — protecting their learned representations — while only the connecting layers are trained on interleaved image-text data.&lt;/p&gt;</description></item></channel></rss>