Skip to content
Lex Fridman PodcastLex Fridman Podcast

Oriol Vinyals: Deep Learning and Artificial General Intelligence | Lex Fridman Podcast #306

Oriol Vinyals is the Research Director and Deep Learning Lead at DeepMind. Please support this podcast by checking out our sponsors: - Shopify: https://shopify.com/lex to get 14-day free trial - Weights & Biases: https://lexfridman.com/wnb - Magic Spoon: https://magicspoon.com/lex and use code LEX to get $5 off - Blinkist: https://blinkist.com/lex and use code LEX to get 25% off premium EPISODE LINKS: Oriol's Twitter: https://twitter.com/oriolvinyalsml Oriol's publications: https://scholar.google.com/citations?user=NkzyCvUAAAAJ DeepMind's Twitter: https://twitter.com/DeepMind DeepMind's Instagram: https://instagram.com/deepmind DeepMind's Website: https://deepmind.com Papers: 1. Gato: https://deepmind.com/publications/a-generalist-agent 2. Flamingo: https://deepmind.com/blog/tackling-multiple-tasks-with-a-single-visual-language-model 3. Language Models are Few-Shot Learners: https://arxiv.org/abs/2005.14165 4. Emergent Abilities of Large Language Models: https://arxiv.org/abs/2206.07682 5. Attention Is All You Need: https://proceedings.neurips.cc/paper/2017/file/3f5ee243547dee91fbd053c1c4a845aa-Paper.pdf PODCAST INFO: Podcast website: https://lexfridman.com/podcast Apple Podcasts: https://apple.co/2lwqZIr Spotify: https://spoti.fi/2nEwCF8 RSS: https://lexfridman.com/feed/podcast/ Full episodes playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4 Clips playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOeciFP3CBCIEElOJeitOr41 OUTLINE: 0:00 - Introduction 0:34 - AI 15:31 - Weights 21:50 - Gato 56:38 - Meta learning 1:10:37 - Neural networks 1:33:02 - Emergence 1:39:47 - AI sentience 2:03:43 - AGI SOCIAL: - Twitter: https://twitter.com/lexfridman - LinkedIn: https://www.linkedin.com/in/lexfridman - Facebook: https://www.facebook.com/lexfridman - Instagram: https://www.instagram.com/lexfridman - Medium: https://medium.com/@lexfridman - Reddit: https://reddit.com/r/lexfridman - Support on Patreon: https://www.patreon.com/lexfridman

Lex FridmanhostOriol Vinyalsguest
Jul 26, 20222h 10mWatch on YouTube ↗

CHAPTERS

  1. 0:00 – 8:43

    Can AI replace the interviewer (and the guest)? Optimizing for “exciting” conversation

    Lex opens by asking whether AI could replace him as an interviewer and even replace Oriol as the interviewee. Oriol argues AI will more likely augment humans (suggesting questions/phrasing) than fully replace the human element, and they discuss the idea of optimizing conversation for engagement.

    • AI as augmentation vs full replacement in conversations
    • “Excitement” as an objective/reward function (engagement optimization)
    • Self-play analogy from game agents to “self-play interviews”
    • Tension between optimizing excitement and optimizing truth
  2. 8:43 – 15:30

    From Turing test vibes to practical limits: offline training, lifetime experience, and short context windows

    Oriol maps Lex’s philosophical questions to concrete ML realities: today’s large models mostly learn offline from vast internet data. He highlights missing pieces for humanlike agents—persistent learning during deployment and long-term memory beyond a limited context window.

    • Modern LMs as passive observers trained offline (no continual learning at deployment)
    • Working memory/context length limits (forgetting beyond a few thousand words)
    • Need for lifetime-like experience and persistent memory
    • Knowledge in weights vs experience via interaction
  3. 15:30 – 21:48

    Why we still “start from scratch”: reusing weights and the dream of a universal deep learning recipe

    Lex and Oriol discuss the inefficiency of initializing and retraining models repeatedly. Oriol frames deep learning’s core promise as a universal recipe—one algorithm for many tasks—while acknowledging the field still relies on task-specific tweaks and often discards learned weights.

    • What “starting from scratch” means (random init and retraining)
    • Universal training recipe aspiration vs task-specific hacks
    • Protein folding as an example: general ideas + problem-specific innovations
    • Meta-learning as a path toward reuse without retraining
  4. 21:48 – 25:11

    “GATO is the beginning”: what Gato is and why the name matters

    Lex reads Oriol’s tweet and uses it to transition into Gato’s role in DeepMind’s sequence-model lineage. Oriol explains naming, the “general agent” idea, and why Gato represents a starting point rather than a finished solution.

    • DeepMind’s animal-named model lineage (Gopher/Chinchilla/Flamingo/Gato)
    • Gato as “general agent” and the significance of adding actions
    • Why “beginning” (room to scale and improve capability)
    • Light discussion of identity, agency, and what makes a model an agent
  5. 25:11 – 34:15

    Inside Gato: one transformer that predicts the next token across text, vision, and actions

    Oriol explains Gato’s core mechanism: a transformer trained to predict the next element in a unified sequence that can include text, images, and actions. They clarify what “agent” means operationally—taking actions in an environment and receiving observations back.

    • Single transformer modeling multimodal sequences as tokens/bytes
    • Next-token prediction applied to actions and observations (imitation learning)
    • Agency defined by action-taking in an environment with feedback loops
    • Gato’s training mix: internet text + trajectories from many RL environments
  6. 34:15 – 41:26

    Tokenization across modalities: text subwords, image patches, and discretized actions

    They dive into the practical bridge that makes multimodality possible: tokenization. Oriol details how Gato tokenizes text via subword units, compresses images into patch-like discrete tokens, and discretizes action spaces (including robotics signals).

    • Tokenization as the “entry point” to treat everything as a sequence
    • Text tokenization: common substrings; typical word spans multiple tokens
    • Image tokenization via compression/quantization (patch-based, lossy)
    • Actions discretized into token IDs across games and robotics
  7. 41:26 – 48:36

    How modalities connect: orthogonal token spaces, shared weights, and aligned embeddings

    Lex presses on how one model can unify disjoint token spaces. Oriol explains that tokens map to embeddings, and while modalities start orthogonal, joint training aligns representations through shared transformer weights and cross-modal datasets (e.g., captions).

    • Separate token ID ranges per modality, shared transformer computation
    • Embeddings as learnable vectors for text/image/action tokens
    • Cross-modal data (captions, paired sequences) creates semantic alignment
    • Alternative direction: representing actions (and more) through language-like descriptions
  8. 48:36 – 56:38

    Growing models without retraining: modularity, freezing weights, and the Flamingo design

    Oriol explains why it’s hard to expand capacity while reusing existing weights—and why modularity is a promising strategy. Using Flamingo as an example, he describes attaching vision components onto a frozen large language model (Chinchilla) to add new capability without destroying the original.

    • The core difficulty: expanding capacity while preserving learned weights
    • Modularity as an analogy to software engineering reuse
    • Flamingo: frozen Chinchilla (70B) + added vision modules (~10B) = multimodal chat
    • Open question: train-from-scratch vs modular extensions at scale
  9. 56:38 – 1:11:15

    Meta-learning redefined: from few-shot classification benchmarks to interactive teaching of complex skills

    Meta-learning’s meaning shifts from narrow few-shot vision benchmarks to GPT-3-style in-context learning via language. Oriol predicts the next evolution is interactive teaching—systems that can ask for feedback, learn games like StarCraft via dialogue, and generalize across tasks with minimal retraining.

    • Old meta-learning: few-shot object identity/classification benchmarks
    • GPT-3 era: tasks defined via natural language prompting (in-context learning)
    • Next step: interactive teaching, feedback loops, and richer task induction
    • Connections to nearest-neighbor ideas, retrieval, and limited fine-tuning
  10. 1:11:15 – 1:15:38

    What makes projects succeed: teams, engineering, benchmarks—and why transformers keep winning

    Oriol emphasizes that breakthroughs come from coordinated teams, careful engineering, and well-chosen benchmarks that guide progress over long timelines. He also argues the transformer’s stability and generality across tasks is a recurring surprise, setting the stage for a deeper discussion of attention.

    • Engineering (data, infrastructure, deployment) as a major driver of success
    • Benchmarks as the compass during multi-month/multi-year efforts
    • AlphaFold as an example of strong metrics enabling sustained iteration
    • Transformer architecture as a surprisingly stable “recipe” across domains
  11. 1:15:38 – 1:32:39

    Attention explained: content-based retrieval, long-context limits, and the need for better memory

    Lex asks what the “magic” of attention is; Oriol contrasts transformers with LSTMs and describes attention as content-based querying over prior context. They also discuss the bottleneck of limited context windows for truly interactive, long-horizon teaching (e.g., learning StarCraft from extensive materials).

    • Transformers vs LSTMs: reducing recency bias via content-based attention
    • Attention as learnable querying to retrieve relevant past information
    • Limits: context length and the challenge of long-horizon instruction
    • Potential need for hierarchy and improved memory mechanisms
  12. 1:32:39 – 1:39:47

    Emergent abilities and scaling laws: phase transitions, predictability, and where extrapolation breaks

    They discuss Oriol’s co-authored work on emergent abilities in large language models—capabilities that appear suddenly at certain scales. Oriol contrasts smooth scaling on simpler tasks with phase-transition-like jumps on harder reasoning benchmarks, and connects this to empirical scaling laws (e.g., Chinchilla).

    • Emergence: sudden jumps from near-random to competent performance
    • Benchmark dependence: some tasks scale smoothly, others show thresholds
    • Chinchilla and empirical scaling laws to allocate data/compute effectively
    • Limits of extrapolation and the gap between empirical and formal theory
  13. 1:39:47 – 2:00:23

    Sentience debates (LaMDA) and the dangers of anthropomorphism in human-AI interaction

    Lex asks about the Google engineer who claimed LaMDA was sentient; Oriol says he has never considered current systems sentient and argues biology’s complexity dwarfs today’s models. They discuss why people feel otherwise, the need to demystify ML, and the societal impact of systems that can convincingly emulate personhood.

    • Oriol’s stance: current models are not sentient; biology remains far more complex
    • Why humans anthropomorphize conversational/embodied systems
    • Importance of public understanding: what models are doing vs not doing
    • Future governance questions: “displaying sentience” in products and social consequences
  14. 2:00:23 – 2:05:27

    Paths to AGI: Bitter Lesson, scale + (maybe) search, and what ‘beyond human’ requires

    They examine Rich Sutton’s “Bitter Lesson” and debate the role of search alongside scale. Oriol argues human-level general intelligence feels plausible via imitation learning, while going beyond may require reinforcement learning and better-defined reward functions, with examples like AlphaCode and AlphaGo.

    • Agreement with general methods and scaling as necessary for powerful systems
    • Search as more domain-dependent; AlphaCode as scale+search success
    • Human-level AGI via imitation feels plausible; ‘beyond’ is harder to define
    • Hardware constraints and the ‘hardware lottery’ shaping research trajectories
  15. 2:05:27 – 2:10:08

    Singularity, resource limits, and a multiplanetary future: how many humans vs robots?

    Lex asks about singularity-like transformation and whether a future spacefaring civilization will be mostly human or mostly robotic. Oriol balances excitement about empowerment and access with concerns about resources and energy constraints, and expresses a hope for a future where humans remain central rather than outnumbered.

    • Societal transformation from widespread human-level agents
    • Resource and energy constraints as limiting factors for digital populations
    • AI’s promise: democratizing access to knowledge and capability
    • Speculation on human/AI coexistence and maintaining human presence in the future

Get more out of YouTube videos.

High quality summaries for YouTube videos. Accurate transcripts to search & find moments. Powered by ChatGPT & Claude AI.