-
pandas API on Spark in depth: what pyspark.pandas covers, what it doesn’t, and how it executes
You already know the promise from earlier lessons in this track: when a dataset outgrows one machine, Spark distributes the work. The catch has always been the rewrite — a pandas notebook does not bec
-
Which model when: a practical decision playbook for tabular, text, images, and small data
Model selection gets easier when you stop asking, “What is the best machine-learning model?” and ask a more useful set of questions:
-
Orchestration beyond cron: DAGs, retries, and backfills with Airflow or Dagster
Cron is excellent at one job: starting a command at a particular time.
-
vLLM and PagedAttention: why LLM serving throughput jumped 10x
A language model can generate only one next token per sequence at a time. That sounds like an inherently serial workload, and at the level of one request it largely is.
-
SVMs and the kernel trick: separating the inseparable
Many machine-learning problems become easier once you stop thinking first about algorithms and start thinking about geometry.
-
Data visualization that doesn’t lie: choosing the right plot for the question
A chart is not neutral merely because every number in it is technically correct.
-
The chain rule at scale: from calc-101 to backprop through a million parameters
A neural network with a million trainable parameters sounds as though it should require a million separate calculus problems.
-
Batch norm, layer norm, RMSNorm: what normalization actually fixes
Neural-network normalization is often taught as a simple recipe: subtract a mean, divide by a standard deviation, and training gets easier.
-
Build your first AI chatbot: from prompt to a working assistant
A useful AI chatbot is not just “a prompt connected to a model.” Even the smallest real application needs a few moving parts: instructions that define behavior, user input, an API call, conversation s
-
OCR in 2026: document understanding beyond plain text extraction
OCR used to mean one thing: turn pixels into characters.