Skip to main content

Model architecture

A model's architecture is the underlying design of a neural network: how its components are arranged and how information flows through them. It is the blueprint that decides what kind of patterns a model can learn and which tasks it is good at.

Think of it like the floor plan of a building. The same bricks (the data and the maths) can be assembled in very different ways, and the plan you choose determines whether you end up with a warehouse, an office or a home. Two models trained on similar data can behave very differently because their architectures are different.

Key building blocks

Most modern architectures are built from a small set of recurring parts:

  • Layers: the stacked stages a model passes information through. Deeper networks (more layers) can capture more abstract patterns.
  • Parameters (weights): the values the model adjusts during training. Their number, from millions to trillions, is a rough proxy for capacity.
  • Attention: a mechanism that lets the model weigh which parts of the input matter most for each piece of output. It is what allows a model to keep track of context across a long passage.
  • Embeddings: the numerical representations of words, tokens or other inputs that the network actually operates on.

The transformer

Almost every modern language model is based on the transformer architecture. Its key innovation is self‑attention, which lets the model relate every token in a sequence to every other token, rather than reading strictly left to right. This makes transformers good at modelling long‑range dependencies and highly efficient to train at scale.

Transformers come in three broad shapes, each suited to different work:

ArchitectureHow it worksTypical use
Encoder‑onlyReads and represents an input in both directionsUnderstanding tasks: embeddings, search, classification
Decoder‑onlyGenerates output one token at a time, left to rightText generation and chat
Encoder‑decoderEncodes an input, then decodes a transformed outputTranslation, summarisation

Why architecture matters in Rational AI

When you register and deploy a model in the platform, its architecture is what makes it fit (or unfit) for a given job. The two families you'll meet most often are:

  • Generative (decoder‑only) models, such as qwen/qwen3-30b-a3b-instruct-2507, which produce the replies users see in Chat and conversations.
  • Embedding (encoder‑only) models, such as BAAI/bge-m3, which turn your Knowledge into vectors so it can be retrieved and used as context.

Choosing the right architecture for each role, a capable generative model for answering and a strong embedding model for retrieval, is what makes a RAG system both accurate and efficient. You manage these choices in the AI Model Registry.


Additional resources