chunking
Applied AI interview questions tagged chunking, across every topic.
9 questions · 1 unlocked for you
Concepts behind "chunking"
The curriculum that explains the ideas these questions test.
Core
ChunkingChunking splits documents into the passages you embed and retrieve, and it is one of the highest-leverage knobs in RAG. Too large and embeddings are diluted so retrieval is imprecise; too small and chunks lose the context needed to answer. Beyond fixed-size splitting, structure-aware and semantic chunking keep coherent units intact, and parent-child (small-to-big) retrieval matches on small chunks but returns larger context. Applied-AI interviews probe it because poor chunking silently caps retrieval quality.🤖 Retrieval & AgentsSign in
Core
RAPTOR and Small-to-Big: Hierarchical Retrieval for RAGThe fix for the chunk-size tradeoff: RAPTOR clusters and summarizes into a tree, small-to-big embeds child chunks but returns the parent for context.🤖 Retrieval & AgentsSign in
