All Glossary Terms

Parameters

Parameters are the internal numerical values that a neural network adjusts during training to capture patterns and represent knowledge within its architecture.

Listen to this definition

Uses a voice available on your device

Audio options
On this page 5 sections
Related concepts 5 concepts

What it is

At the hardware level, parameters are just 16 or 32-bit floating point numbers stored in tensors within the model weights. When you run an inference request, the model performs matrix multiplications against these millions or billions of constants to transform your input embeddings. A standard model like Llama 3 8B contains eight billion of these values, requiring roughly 16GB of VRAM just to load the model before any context is added.

Why it matters

The parameter count dictates the memory footprint, hardware requirements for serving, and total latency per token. If you choose a model with too many parameters for your infrastructure, you will see high cold start times or OOM errors. Ignoring this scaling leads to inefficient deployments where you pay for GPU capacity that your application does not actually need.

In practice

You observe this parameter count in the model card, which directly informs your instance selection on cloud providers like AWS or GCP. If you see latency spikes in your inference pipeline, it is often because the model size exceeds the available VRAM and triggers memory swapping or offloading to system RAM.

The tradeoff

More parameters generally enable higher reasoning capabilities but linearly increase your cost and latency per request. People often mistakenly assume a larger parameter count always guarantees better performance for their specific domain.

Where it appears

Research summaries that use Parameters, each linked to its source paper.

  • Why Large Language Models Miss Information
    Reading Is Not Using: Retrieval, Judgment, and the Design of AI Financial Research Workflows

    This paper shows that while models can retrieve relevant financial data from long documents, they fail to act on that information unless the data is restated specifically for the decision prompt.

  • Efficient Visual Learning Without Parameter Updates
    BDH-CQ: In-Context Learning with Recurrent Latent Reasoning

    BDH-CQ is a reasoning system that enables models to learn new visual tasks from demonstrations using recurrent latent memory instead of updating parameters or using explicit key-value caches.

  • GeoBenchLLM: Evaluating Geographic Intelligence in LLMs
    GeoBenchLLM: A Comprehensive Benchmark for Evaluating LLMs on Geo-Related Tasks

    The authors introduce GeoBenchLLM, a unified benchmark consisting of 421,041 questions across twelve datasets to evaluate LLM performance on geographic tasks.

  • Finding the Optimal Size for Language Models
    Training Compute-Optimal Large Language Models

    The paper investigates the optimal model size and number of tokens for training a transformer language model under a given compute budget, finding that current large language models are significantly undertrained.

  • Reprogramming Models into Assertive Socratic Assistants
    Behavioral Reprogramming of Open-Weights Models: Cognitive Plasticity and Alignment Bounds

    The paper demonstrates how to fine-tune open-weights models to shift from passive assistant behaviors to a proactive Socratic persona using targeted parameter-efficient techniques.

  • Building Capable Models With Only Permissible Data
    DFM Mimir v1: An Open HRM Delivering Frontier Performance at 1B Parameters Using Only Permissible Post-Training Data

    Researchers developed Mimir v1, a foundation model trained on 161 permissible datasets to ensure compliance without sacrificing performance in English, Math, and Danish tasks.

  • Decoupling Structure and Parameters in LLM Optimization
    A Hybrid Nested Harness for Decoupling Structure and Parameters in LLM-Driven Optimization

    The paper introduces a hybrid system that splits optimization tasks into an LLM-driven structural design phase and a traditional numerical parameter tuning phase to prevent structural failures.

  • Efficient Weight Quantization Using Cubic Curves
    CubicQuant: Parametric Non-Uniform Codebooks for High-Throughput LLM Inference with 1-8-Bit Weights

    CubicQuant introduces a flexible, GPU-friendly weight quantization format that uses monotonic cubic functions to better represent model weight distributions compared to standard uniform methods.

  • Expanding LLM Tokenizers Without Discarding Weights
    In-Place Tokenizer Expansion for Pre-trained LLMs

    This paper presents an in-place recipe to expand pre-trained model tokenizers to better support underrepresented languages without discarding existing model weights.