EventTrader
AI-Native Trading
PAPER
Menu
Dark Mode
Plain English Mode
PAPER TRADING MODE — Enable real trading on your Account page
Back
Learn · How AI represents data

Vector · Matrix · Tensor

Same idea, one more axis each time. A vector is a row. A matrix is a waffle. A tensor is a syrup-drenched stack of waffles on a plate.

Vector

1 axis · length
0.12 -0.03 0.88 0.41 one vector = one row of numbers

A single row of numbers along one axis. A token embedding is a vector — e.g. 12,288 slots, each a single scalar coordinate.

Matrix

2 axes · rows × columns
cat 0.12 -0.03 0.88 0.41 dog 0.55 0.10 -0.22 0.07 market -0.31 0.92 0.04 0.60 bitcoin 0.08 -0.45 0.37 0.19 each row is a vector · columns are features

A grid of numbers with two axes. Stack many vectors and each vector becomes one row. The embedding matrix is exactly this: every token in the vocabulary is a row.

Tensor

3+ axes · rows × columns × depth
syrup = attention (ties the layers together) each waffle = one matrix · the stack = a tensor

A stack of matrices — a third axis on top of rows × columns. Picture a stack of waffles on a plate: one waffle is a matrix (its pockets are the numbers), and piling waffle on waffle adds depth. The syrup poured over the whole stack is the operation that links them — in a transformer, that's attention flowing across every layer at once, mixing the numbers between waffles. That stacked, syrup-linked shape is exactly what the model computes on.

Vectora row of numbers
Matrixa waffle — rows of vectors
Tensora syrup-drenched stack of waffles