Yun Wu

Learning GenAI via SOTA Papers

This podcast is focusing on sharing the papers on GenAI related topic, especially the SOTA (State of the Art) papers that are the foundations of GenAI work. It shows how these researches paved the way to the GenAI tools that we are using every day such as ChatGPT, Gemini, Claude Code etc.

Author

Yun Wu

Category

Technology

Podcast website

podcasters.spotify.com

Latest episode

Jul 10, 2026

Where to listen?

Podcasts in the app Replaio Radio Coming soon

Podcasts are coming to the app soon. Install now and be the first to see a whole new take on podcasts

Get it on Google Play Install for free Android 5M+ downloads · 4.8 rating iOS soon

Episodes

EP024: OpenAI CLIP Bridges Language and Vision 26.02.2026

This paper, titled " Learning Transferable Visual Models From Natural Language Supervision " (often referred to as the CLIP paper), presents a method for training computer vision models using the vast amount of raw text available on the internet, rather than relying on expensive, crowd-labeled datasets like ImageNet. Here is a summary of the key components and findings: Core Approach: Na...

EP023: Scaling Switch Transformers to Trillion Parameters 26.02.2026

The paper " Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity " introduces the Switch Transformer , a sparsely-activated model designed to address the computational barriers of scaling deep learning models. Here is a summary of the key points: • Core Innovation: The authors simplify the Mixture-of-Experts (MoE) routing algorithm. Unlike previous...

EP022: DALL-E Treats Images Like Language 25.02.2026

The paper " Zero-Shot Text-to-Image Generation " describes a simple yet scalable approach to generating images from text descriptions using a transformer model. The authors, researchers from OpenAI, demonstrate that by training a single large autoregressive transformer on a massive dataset, they can achieve high-quality results without the complex, domain-specific architectures previousl...

EP021: Vision Transformers Beat CNNs at Scale 25.02.2026

This paper, titled " An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale ," introduces the Vision Transformer (ViT) , an architecture that applies a pure Transformer directly to images with minimal modifications, challenging the dominance of Convolutional Neural Networks (CNNs) in computer vision. Here is a short summary of the key points: • Methodology: The model...

EP020: Big Bird Scales Transformers With Sparse Attention 25.02.2026

The paper " Big Bird: Transformers for Longer Sequences " addresses the limitation of standard Transformer models, such as BERT, which suffer from a quadratic dependency on sequence length due to their full attention mechanism. To resolve this, the authors propose BIGBIRD , a sparse attention mechanism that reduces computational and memory complexity from quadratic to linear while preser...

EP019: Facebook's Linformer Solves the Attention Bottleneck 25.02.2026

The paper " Linformer: Self-Attention with Linear Complexity " introduces a new Transformer architecture designed to overcome the efficiency bottlenecks of standard self-attention, which scales quadratically ( O ( n 2)) with sequence length. The authors' core insight is that the self-attention matrix is low-rank , meaning the stochastic matrix formed by attention can be approximated by a smaller m...

EP018: Turning Digital Static Into Images With Diffusion 25.02.2026

" Denoising Diffusion Probabilistic Models " by Jonathan Ho, Ajay Jain, and Pieter Abbeel demonstrates that diffusion probabilistic models can generate high-quality images, achieving results competitive with or better than other leading generative models like GANs. Key points from the paper include: • High-Quality Synthesis: The authors show that diffusion models, which operate by gradua...

EP017: RAG Gives AI a Library Card 25.02.2026

This paper introduces Retrieval-Augmented Generation (RAG) , a method designed to enhance pre-trained language models by giving them access to explicit, non-parametric memory. While standard large language models store knowledge implicitly in their parameters, they often struggle with accessing precise information and can produce "hallucinations". To address this, the authors propose a h...

EP016: GPT-3 Learns From Examples Without Retraining 25.02.2026

The paper " Language Models are Few-Shot Learners " introduces GPT-3 , an autoregressive language model with 175 billion parameters, which demonstrates that scaling up model size significantly improves task-agnostic, few-shot learning capabilities. Unlike traditional NLP systems that require fine-tuning on large, task-specific datasets, GPT-3 can adapt to a wide variety of tasks—such as...

EP015: Longformer Smashes the 512 Token Barrier 25.02.2026

The paper " Longformer: The Long-Document Transformer " addresses the computational inefficiency of standard Transformer models, which scale quadratically with sequence length and are consequently unable to process long documents. To resolve this, the authors introduce a modified attention mechanism that scales linearly with sequence length, combining a local sliding window attention with a task-s...

EP014: ELECTRA Beats GPT On One GPU 25.02.2026

" ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators " Core Concept The paper introduces ELECTRA ("Efficiently Learning an Encoder that Classifies Token Replacements Accurately"), a method designed to improve the computational efficiency of pre-training language models. The authors argue that existing state-of-the-art methods like BERT are inefficient because they use Mas...

EP013: Reformer Cracked the Transformer Memory Wall 25.02.2026

The paper " Reformer: The Efficient Transformer " introduces a modified Transformer architecture designed to solve the high memory consumption and computational costs associated with training large models on long sequences. The authors propose three specific techniques to improve efficiency: • Locality-Sensitive Hashing (LSH) Attention: This replaces the standard dot-product attention—which has a...

EP012: Google T5 Turns Every Task Into Text 25.02.2026

The paper " Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer " presents a comprehensive empirical survey of transfer learning techniques in Natural Language Processing (NLP). The authors introduce a unified framework that casts every text processing problem—including translation, question answering, and classification—as a "text-to-text" task, where the model is fe...

EP011: ZeRO Solved the Trillion Parameter Memory Wall 24.02.2026

Here is a short summary of the paper " ZeRO: Memory Optimizations Toward Training Trillion Parameter Models " : Core Problem and Solution The paper addresses the fundamental memory challenges inherent in training large deep learning models, which often exceed the memory capacity of individual devices. The authors introduce ZeRO (Zero Redundancy Optimizer) , a novel solution designed to eliminate m...

EP010: ALBERT Outperforms BERT With Parameter Sharing 24.02.2026

The paper, " ALBERT: A Lite BERT for Self-supervised Learning of Language Representations ," introduces a modified BERT architecture designed to address the memory limitations and training speed issues encountered when scaling up natural language processing models. The authors achieve this through two primary parameter-reduction techniques: • Factorized embedding parameterization: This separates t...

EP009: Slicing the AI Brain with Megatron-LM 24.02.2026

This paper " Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism " introduces a simple and efficient technique for training very large transformer models that exceed the memory limitations of a single GPU. The authors implement an intra-layer model parallel approach that partitions the model's parameters (specifically within the self-attention and MLP blocks) acro...

EP008: RoBERTa Proves BERT Was Just Undertrained 24.02.2026

The paper " RoBERTa: A Robustly Optimized BERT Pretraining Approach " presents a replication study of BERT which finds that the original model was significantly undertrained. To address this, the authors introduce RoBERTa, an improved training recipe that modifies BERT in the following ways: • Training Methodology: It utilizes dynamic masking rather than static masking, removes the next sentence p...

EP007: How GPT-2 Hallucinated Ovid's Unicorn 24.02.2026

The paper " Language Models are Unsupervised Multitask Learners " demonstrates that high-capacity language models can perform various natural language processing (NLP) tasks—such as question answering, machine translation, and summarization—without any explicit supervision. By training a 1.5-billion parameter Transformer model named GPT-2 on a new, diverse dataset of millions of webpages called We...

EP006: Transformer-XL Cures AI Amnesia 24.02.2026

The paper introduces Transformer-XL , a novel neural architecture designed to overcome the limitations of fixed-length contexts in standard Transformers, which often lead to context fragmentation and an inability to capture long-term dependencies. To address these issues, the authors propose two key technical innovations: a segment-level recurrence mechanism and a novel relative positional encodin...

EP005: How BERT Mastered Language by Hiding Words 24.02.2026

The paper " BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding " introduces a new language representation model called BERT , which stands for Bidirectional Encoder Representations from Transformers . Unlike previous language models that were restricted to unidirectional (left-to-right) architectures, BERT is designed to pre-train deep bidirectional representations fr...

EP004: How 7000 Unpublished Books Birthed GPT 23.02.2026

The paper " Improving Language Understanding by Generative Pre-Training " by Alec Radford and colleagues at OpenAI introduces a semi-supervised framework to address the challenge of limited labeled data for diverse natural language understanding (NLU) tasks. The authors propose a two-stage training procedure : • Unsupervised Pre-training: A high-capacity 12-layer Transformer decoder is first train...

EP003: How ELMo Made Word Vectors Dynamic 23.02.2026

The paper " Deep contextualized word representations " introduces a novel type of word representation called ELMo (Embeddings from Language Models). Unlike traditional word embeddings that provide a single, context-independent vector for each word, ELMo representations are deep contextualized vectors derived from all internal layers of a deep bidirectional language model (biLM) pre-trained on a la...

EP002: ULMFiT Was the ImageNet Moment for Text 23.02.2026

The paper " Universal Language Model Fine-tuning for Text Classification " by Jeremy Howard and Sebastian Ruder introduces ULMFiT , an effective transfer learning method for Natural Language Processing (NLP). While transfer learning has long revolutionized computer vision, NLP models previously required significant task-specific modifications or training from scratch. ULMFiT enables ImageNet-like...

EP001: How Transformers Smashed the Sequential Bottleneck 22.02.2026

Attention is All You Need • The Shift to Transformers: The overview discusses the move away from complex recurrent and convolutional neural networks toward the Transformer architecture , which relies entirely on attention mechanisms to draw global dependencies between inputs and outputs,. • Self-Attention & Multi-Head Attention: It explains how the model uses self-attention to relate different...

Listen to the Learning GenAI via SOTA Papers podcast in Replaio

Radio and podcasts in one app - free, with no sign-up. Install today and do not miss the launch

Get it on Google Play

Replaio is not a podcast publisher; show names, artwork and audio belong to their authors and are distributed through public RSS feeds.