A model is a parameterized function. You show it inputs and desired outputs. A loss scores the miss. Gradient descent nudges the parameters so the miss shrinks. CNNConvolutional neural network. Learns local filters that slide across the input, exploiting spatial structure. The default shape for images before Vision Transformers arrived., RNNRecurrent neural network. Processes a sequence one step at a time, carrying a hidden state forward. Stepping through that state sequentially is hard to parallelize, part of why attention displaced it., TransformerThe architecture built on self-attention (block 03). Every token attends to every other token in the window, computed in parallel rather than stepped through sequentially like an RNN., state-spaceState-space model. Processes a sequence through a compressed, continuously updated state, built for the parallel training and long-context efficiency that made Transformers dominant. Mamba is a current example., mixture-of-expertsA layer made of several parallel sub-networks, the experts, plus a router that sends each token to only a few of them. Total parameter count grows while inference cost stays close to that of a much smaller model.: different shapes, same job. Inference is running the fitted function. Fine-tuning is a smaller write to the same parameters.
A new architecture is a new parameterization of the same problem. The relevant questions are inductive bias, training cost, and inference cost. Alignment and instruction tuning change the objective, not the kind of object being optimized.