ORBiS Tree

ORBiS TREE · ENGLISH DOCUMENT

Concepts →

Transformer

A neural network architecture that processes sequences primarily through attention mechanisms.

한국어 English
English updated 8월 29, 2026 Source article updated 8월 28, 2026 1 sources
This English page is a curated translation layer linked to the Korean source article. Community changes are currently made on the Korean source, where the full revision history and anonymous edit trail are preserved.
The Transformer was introduced in the 2017 paper “Attention Is All You Need.” It replaced recurrent sequence processing with attention-centered blocks, making it easier to train models in parallel and to capture relationships between tokens over long ranges.[1]

How it works

Transformer blocks combine attention, feed-forward layers, residual connections, and normalization. Encoder-style models such as BERT focus on representation learning, while decoder-style models such as GPT generate tokens autoregressively. Many systems use variations of these original designs.

Why it matters

The architecture became a core building block of modern language models and later expanded into vision, audio, and multimodal systems. Understanding Transformers helps explain concepts such as Attention, KV Cache, and Context Window.

Related concepts

SOURCES

Sources

  1. Open source ↗