AI Learning Project
AI Learning Project
Search
Ask the AI

Large Language Models From a Developer’s Angle: Word Association at Scale

What an LLM is doing underneath the marketing: next-token prediction driven by the Transformer. Covers the architectural workflow, running an 8B model locally in Python, the hardware pitfalls encountered on the way, and what actually matters for developers building on top of these models.

Visual Instruction Tuning: Where the Loss Function Actually Applies

The mechanics of visual instruction tuning, focusing on loss construction. Covers multimodal auto-regressive next-token prediction, the data flow from JSON to masked labels, the PyTorch label-masking implementation, and the production pitfalls that follow from getting the mask wrong.

Deep Learning Frameworks: Why You Stop Writing Backpropagation by Hand

Once you have written a small neural network from scratch, the question becomes whether you must hand-code matrix multiplication and backpropagation every time. Covers what frameworks actually provide, the two major camps and how they differ, which one suits a beginner, and the same simple layer defined in each.

Getting Started with Feature Engineering: Missing Values, Categorical Variables and Scaling in scikit-learn

Build a feature engineering pipeline with scikit-learn Pipeline and ColumnTransformer, handling missing values, categorical variables and numeric standardisation while avoiding data leakage.

Scroll down