DeepLearning

Large Language Models: From Tokens to Text

3 minute read

LLMs are, mechanically, a stack of transformer layers predicting one token at a time. Here’s how that simple idea, scaled up, produces something that can hol...

Neural Networks: How They Actually Work

3 minute read

Before transformers, MoE, or Mamba make sense, you need the fundamentals: what a neuron computes, how a network learns, and why ‘deep’ just means ‘more layer...

Tokenization: How Neural Networks Read Text

3 minute read

Neural networks only understand numbers. Tokenization is the step that turns ‘Hello world’ into something a model can actually compute on — and the choices m...