Mo Bhuiyan via NotebookLM

The Practical AI Digest

Distilling AI/ML theory into practical insights. One concept at a time. No jargon.

Autor

Mo Bhuiyan via NotebookLM

Categoría

Technology

Web del podcast

mmostagirbhuiyan.com

Último episodio

2 de jul. de 2026

¿Dónde escuchar?

Podcasts en la app Replaio Radio Muy pronto

Los podcasts llegarán muy pronto a la app. Instálala ahora y sé el primero en descubrir una forma totalmente nueva de vivir los podcasts

Descárgala en Google Play Instálala gratis Android 5 M+ de descargas · valoración de 4,8 iOS muy pronto

Episodios

The Agent Interoperability Problem: Why Your AI Agents Can Not Talk to Each Other 02.07.2026

90% of enterprises deploy AI agents. Only 23% scale them. The gap is interoperability. Three protocols, MCP, A2A, and ACP, are racing to build the connective tissue before the ecosystem fragments.

KV Cache Compression: The Memory Wall Nobody Talks About 18.06.2026

Your GPU is not compute-bound. It is memory-bound. The KV cache is eating half your inference budget, and two ICLR 2026 breakthroughs KVTC and TurboQuant are about to change the math entirely.

Context Rot: Why Million-Token Windows Quietly Fail 04.06.2026

Models advertise million-token windows but accuracy degrades well before the limit. Three recent studies, the mechanisms behind the rot, and a practitioner playbook for what to do Monday.

LLMOps: Operating Large Language Models in Production 26.05.2026

Building an AI model is one thing: keeping a large language model running reliably in the real world is another. In this episode, we discuss LLMOps , the emerging set of practices and tools for deploying, monitoring, and maintaining large language models (LLMs) in production. We cover challenges unique to LLMs (like handling the huge model sizes, long context lengths, unpredictable outputs, and co...

TinyML & Edge AI: Machine Learning on Devices 12.05.2026

In this episode, we explore how AI is moving from the cloud to tiny devices . TinyML is the field of optimizing models and algorithms to run on microcontrollers, smartphones, and other edge devices with very limited compute and power. We discuss techniques like model compression, quantization, and architecture search that make models small and efficient enough to fit on a $5 microcontroller, bring...

AI Hardware: GPUs, TPUs and Beyond 28.04.2026

This episode is all about the specialized hardware that makes modern AI possible. We explain how GPUs became the workhorses of deep learning by offering massive parallelism for matrix math, and how companies like Google went further to build TPUs (Tensor Processing Units) optimized for neural network workloads. You’ll hear about the latest AI chips, from NVIDIA’s powerful GPUs driving large model...

Synthetic Data: Artificial Data for Real Insights 14.04.2026

In this episode, we explore how synthetic data is created and used to improve AI models. Synthetic data refers to artificial datasets generated by models (like GANs or language models) that mimic real data. We discuss how this can help in situations with little real data or strict privacy requirements for example, generating realistic medical records to train an AI without exposing any patient’s i...

Explainable AI: Opening the Black Box 31.03.2026

In this episode, we look at how researchers are making AI models more transparent and interpretable . We discuss techniques like SHAP values and LIME that explain model predictions by attributing importance to features! So an AI system isn’t just a black box, you can understand why it made a decision. You’ll hear about example use cases (like explaining a medical AI’s diagnosis to a doctor or a lo...

Aligning AI with Human Intent: RLHF in Action 17.03.2026

 In this episode, we demystify how researchers teach AI models to behave helpfully and safely using Reinforcement Learning from Human Feedback (RLHF) . We discuss why even very large models can generate undesired outputs and how RLHF addresses this by incorporating human preferences. You’ll learn how methods like InstructGPT were trained: first by gathering human-written demonstration responses, t...

AI for Code: How Models Write Software 03.03.2026

This episode explores the rise of AI coding assistants. We discuss how models like OpenAI’s Codex (which powers GitHub Copilot) are trained on millions of code repositories to generate software from natural language prompts. You’ll hear how these models can autocomplete functions or even draft whole programs, and what they’re capable of today, as well as their limits (like generating errors or ins...

Multimodal Models: Combining Vision, Language, and More 17.02.2026

This episode explores multimodal AI : models that can see, read, and even hear. We explain how models like OpenAI’s CLIP learn joint representations of images and text (by matching pictures with their captions), enabling capabilities like image captioning and visual search. You’ll learn why multimodal systems represent the next leap toward more human-like AI, processing text, images, and audio tog...

Efficient Fine-Tuning: Adapting Large Models on a Budget 03.02.2026

This episode dives into strategies for fine-tuning gigantic AI models without needing massive compute. We explain parameter-efficient fine-tuning methods like LoRA (Low-Rank Adaptation) , which freezes the original model and trains only small adapter weights, and QLoRA , which goes a step further by quantizing model parameters to 4-bit precision. You’ll learn why techniques like these have become...

Diffusion Models: AI Image Generation Through Noise 20.01.2026

In this episode, we break down what diffusion models are and why they’ve become the go-to method for AI image generation. You’ll learn how these models gradually add and remove noise to transform random pixels into coherent images, enabling use cases from art creation to image restoration. We also explore recent advances like latent diffusion , which compresses the generation process for efficienc...

Graph Neural Networks: Learning from Connections, Not Just Data 30.09.2025

This episode breaks down what graph neural networks (GNNs) are and why they matter. You’ll learn how GNNs use nodes and edges to represent relationships and how message passing lets models make sense of social, biological, and networked data. We’ll also cover recent advancements like PGNN for multi-modal graphs and common pitfalls like scalability and over-smoothing.

Neuro-Symbolic AI: Combining Learning With Logic 16.09.2025

In this episode, we explain what neuro-symbolic AI is and why it matters. You’ll learn how neural networks handle patterns, how symbolic systems handle rules, and how combining the two can help models reason more reliably. We also cover real examples where this approach is already being applied in assistants and robotics, showing how it could make AI systems more trustworthy and useful.

LLMs in Chip Design: How AI Is Entering the Hardware Workflow 02.09.2025

In this episode, we look at how large language models are being used in chip and hardware design. We break down what LLM-aided design actually means, how models can generate HDL code, assist with testbench creation, and even support formal verification. You'll also hear about real-world tools like ChatEDA and how companies are starting to use AI in their silicon development workflows.

How Embeddings and Vector Databases Power Generative AI 19.08.2025

This episode explains how embedding models turn language into numerical vectors and how vector databases like Pinecone, FAISS, or Weaviate store and search those vectors efficiently. You'll learn how this system enables GenAI models to retrieve relevant information in real-time, power RAG pipelines, and scale up tool-augmented LLM workflows.

Agentic AI: What Happens When Models Start Acting 05.08.2025

In this episode, we explore agentic AI systems built to not just predict or classify, but to plan, reason, and act autonomously. We break down what makes these models different, how they use tools, memory, and feedback to complete tasks, and why they represent the next step beyond traditional LLMs. You’ll hear how concepts like action loops, world modeling, and autonomous decision-making are shapi...

Understanding Attention: Why Transformers Actually Work 22.07.2025

This episode unpacks the attention mechanism at the heart of Transformer models. We explain how self-attention helps models weigh different parts of the input, how it scales in multi-head form, and what makes it different from older architectures like RNNs or CNNs. You’ll walk away with an intuitive grasp of key terms like query, key, value, and how attention layers help with context handling in l...

Markov Chains, Monte Carlo, and HMC: A Deep Dive 08.07.2025

In this episode, we break down the essentials of Markov Chains, Monte Carlo simulations, and Markov Chain Monte Carlo methods. We explain key ideas like memoryless processes, stationary distributions, and how random sampling helps model uncertainty. We also explore gradient-based techniques like Hamiltonian Monte Carlo, highlighting their role in modern statistical modeling. Ideal for anyone curio...

The Model Context Protocol (MCP): Making LLMs Actually Useful 24.06.2025

In this episode, we dive into the Model Context Protocol, or MCP. It’s a new standard that helps large language models connect with real-world tools, data, and APIs in a more structured way. We’ll break down how MCP works, why it matters for building smarter AI agents, and what it means for developers working on enterprise-grade AI systems.

Generative Adversarial Networks (GANs) Explained: From DL Basics to Real-World Training Tips 10.06.2025

This episode breaks down how GANs work by starting with deep learning basics like CNNs, gradient descent, and regularization. We then get into what actually goes wrong when training these models and how to deal with it. It’s practical, straightforward, and meant for anyone trying to make sense of GANs in the real world.

Bayesian vs. Frequentist Thinking in Marketing Mix Modeling 27.05.2025

In this episode, we unpack how Bayesian and Frequentist statistical approaches tackle marketing performance analysis, focusing on Marketing Mix Modeling (MMM). You’ll learn the key differences in interpretation, how Bayesian methods enable sequential updates and uncertainty modeling, and why they’re gaining traction in modern marketing analytics. Ideal for marketers, data scientists, and anyone cu...

Escucha el podcast The Practical AI Digest en Replaio

Radio y podcasts en una sola app - gratis y sin registro. Instálala hoy y no te pierdas el estreno

Descárgala en Google Play

Replaio no es editor de podcasts; los nombres de los programas, las portadas y el audio pertenecen a sus autores y se distribuyen a través de canales RSS públicos