Schema eines neuronalen Netzes: Eingabe links, mehrere hintereinanderliegende Schichten in der Mitte, Ausgabe rechts. Pfeile zeigen ausschließlich nach rechts und sind als Forward Pass beschriftet; ein gestrichelter Rückpfeil ist als Backward Pass markiert und nur für das Training gekennzeichnet.

Forward Pass

The forward pass is the computational path an input takes through an AI model from start to finish, until a result comes out at the end. It is the smallest computational unit in AI systems: every answer and every training example begins with a forward pass.

At its core, an AI model is a very long computational rule. It consists of many layers arranged one after another, each transforming numbers. The forward pass is a single run through this chain, from input to result. For example, you feed in an image, and each layer passes its intermediate result on to the next. At the end stands an output, say the assessment "cat, 93 percent". The name comes from the fact that the computation runs in only one direction: forward, with no way back.

Why a single pass determines the computation

The forward pass is the unit of measure experts use when talking about cost. Anyone who wants to know how expensive an AI service is ultimately counts passes. A chatbot with millions of users performs billions of them per day. Each individual one costs electricity and occupies a specialized chip for milliseconds.

How costly a pass is depends on the size of the model. Models contain parameters, i.e. learned numbers used in the computation. Roughly speaking: the more parameters involved in the computation, the longer a forward pass takes. This is why there are architectures in which only part of the parameters are active per pass. They lower costs without shrinking the model.

The forward pass is also the first step in learning. Only once the model has delivered an answer can it be compared with the correct solution. Without a pass, there is nothing to correct. That is why it stands at the beginning of every training round.

The path from input to output

First, the input is translated into numbers. An image becomes brightness values, a text becomes numeric codes for word fragments. These numbers then move into the first layer. There they are computed together with the learned parameters, usually through many multiplications and additions.

The result passes on to the next layer, and so on. You can picture it like an assembly line. Each station processes what the previous one delivered, and nobody sends material back. Early layers recognize simple patterns like edges, later ones more abstract things like faces. The final layer shapes the actual output from this.

The counterpart is called the backward pass. Here, the computation runs backward through the same layers to figure out which parameter contributed to the error. This backward path only happens during training. During live operation, there are exclusively forward passes. A common misconception is that a model keeps learning while answering. It does not, because without a backward path, not a single parameter changes.

Forward passes in chatbots and graphics card figures

The term is most clearly seen in language models. Such a model does not generate text all at once, but word fragment by word fragment. For each individual fragment, a complete forward pass runs. An answer with 300 fragments therefore means 300 passes in succession. This is exactly why the text appears trickling in the chat window rather than as a block.

In news about chip manufacturers, the term appears indirectly. When there is talk of computing power, tokens per second, or data center utilization, it is about the question of how many passes a facility can manage per second. Figures on the power consumption of an AI request are also based on this.

For users, the forward pass is indirectly noticeable. The waiting time until the first word is the duration of the first pass. Large models therefore respond more slowly than small ones. Anyone building an app with an AI feature typically plans their budget around these passes.

Subscribe free. Unsubscribe the second it sucks.

High-signal news across AI, business, UX, and tech. Every morning.