Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 3 additions & 25 deletions src/content/posts/neural-networks-from-zero/.write-source.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"meta": {
"title": "Neural Networks From Zero: From a Single Number to a Billion Parameters",
"summary": "A neural network never sees a word, an image, or a sound — only a list of numbers. Starting from that one fact and a single neuron, this day-zero guide builds the whole machine: how any input becomes numbers, why weights, biases, and activations each exist, how neurons stack into layers and layers into a model, and how to compute a model's size and running cost by hand.",
"summary": "A neural network never sees a word, an image, or a sound — only a list of numbers. Starting from that one fact and a single neuron, this guide builds the whole machine: how any input becomes numbers, why weights, biases, and activations each exist, and how neurons stack into layers and layers into a model.",
"authors": [
"dinesh"
],
Expand Down Expand Up @@ -3595,21 +3595,10 @@
],
"children": []
},
{
"id": "paragraph-102",
"type": "separator",
"props": {},
"children": []
},
{
"id": "44bdadb3-da54-4a7b-9d64-0799eadb9d0e",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [],
"type": "divider",
"props": {},
"children": []
},
{
Expand All @@ -3630,17 +3619,6 @@
}
],
"children": []
},
{
"id": "9e403107-b71e-4bb2-86b2-573648d35a88",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [],
"children": []
}
],
"tableVariants": {}
Expand Down
4 changes: 2 additions & 2 deletions src/content/posts/neural-networks-from-zero/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Neural Networks From Zero: From a Single Number to a Billion Parameters'
summary: 'A neural network never sees a word, an image, or a sound — only a list of numbers. Starting from that one fact and a single neuron, this day-zero guide builds the whole machine: how any input becomes numbers, why weights, biases, and activations each exist, how neurons stack into layers and layers into a model, and how to compute a model''s size and running cost by hand.'
summary: 'A neural network never sees a word, an image, or a sound — only a list of numbers. Starting from that one fact and a single neuron, this guide builds the whole machine: how any input becomes numbers, why weights, biases, and activations each exist, and how neurons stack into layers and layers into a model.'
authors: ['dinesh']
date: '2026-07-12'
updated: '2026-07-18'
Expand Down Expand Up @@ -410,6 +410,6 @@ Start to finish, with no hand-waving, you can now explain:

That is the atom, the molecule, the organism, its size, and its running cost — the day-zero ground truth. Every advanced topic — attention, transformers, KV caches, quantization, distributed training — is built on exactly these pieces. When they show up, they won’t be magic. They’ll be assembly.

---
<hr className="article-hr article-hr--line" />

_Next: why generating text one token at a time makes a GPU spend 99% of its time waiting on memory instead of computing — the compute-bound vs memory-bound story that shapes every serving system._
Loading