PromptForge
AI Glossary

Models & architecture

Parameters

Also known as: weights, model size

Definition

Parameters are the learned numerical weights inside a model, adjusted during training. Parameter count — 7B, 70B, 405B — is a rough proxy for capacity, but not a reliable predictor of quality.

A model with 7 billion parameters has 7 billion adjustable numbers determining how it transforms input into output. More parameters mean more capacity to store patterns and knowledge, and more compute needed to train and run the model.

Parameter count has become a weak quality signal. Training data quality, data volume, and post-training technique matter enormously, and well-trained smaller models routinely outperform larger, older ones. A modern 8B model can beat a two-year-old 70B model on many tasks.

For self-hosting, parameter count directly determines memory requirements. A rough guide at common quantisation levels: multiply parameter count in billions by roughly 0.5-1 to get required VRAM in gigabytes.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.