Skip to main content

Envisioning is an emerging technology research institute and advisory.

LinkedInInstagramGitHub

Since 2010

research
  • Observatory
  • Adaptive capacity
  • Newsletter
  • Methodology
  • Origins
  • Vocab
  • RSS feeds
services
  • Signals Session
  • Bespoke Projects
  • Build Sessions
  • Pricing
  • Use cases
  • Signals
  • Signal Scan↗free
impact
  • ANBIMAFuture of Brazilian Capital Markets
  • IEEECharting the Energy Transition
  • Horizon 2045Future of Human and Planetary Security
  • WKOTechnology Scanning for Austria
solutions
  • Innovation
  • Strategy
  • Consultants
  • Foresight
  • Associations
  • Governments
  • L&D
resources
  • Partners
  • Coding for Non-Coders
  • How we work
  • Data visualization
  • Multi-Model Convergence
  • FAQ
  • Security and privacy
  • Public sector
about
  • Manifesto
  • Community
  • Events
  • Support
  • Contact
ResearchCapabilityServicesSignalsAbout
ResearchCapabilityServicesSignalsAbout
  1. Home
  2. Vocab
  3. Parameter

Parameter

A model-internal variable whose value is learned directly from training data.

Year: 1950Generality: 928
Back to Vocab

In machine learning, a parameter is any variable that is internal to a model and whose value is determined through the training process rather than set manually beforehand. Parameters encode what a model has learned from data — they are the adjustable knobs that the training algorithm tunes in order to minimize prediction error. In a linear regression model, parameters are the coefficients assigned to each input feature. In a neural network, they are the weights connecting neurons across layers and the bias terms added at each node. The total count of parameters in a model is often used as a rough proxy for its capacity: larger models with more parameters can represent more complex functions, though they also require more data and compute to train effectively.

During training, parameters are updated iteratively using an optimization algorithm such as stochastic gradient descent. The algorithm computes the gradient of a loss function with respect to each parameter and adjusts values in the direction that reduces error. This process continues over many passes through the training data until the parameters converge to values that produce accurate predictions. How parameters are initialized before training begins can significantly influence whether optimization converges at all, and techniques like Xavier or He initialization have been developed specifically to address this.

Parameters are distinct from hyperparameters, which govern the structure and behavior of the learning process itself — things like learning rate, batch size, or the number of layers in a network. Hyperparameters are set by the practitioner before training; parameters are discovered by the model during training. This distinction matters because it separates what the model learns from how the learning is configured.

The scale of parameters has grown dramatically with modern deep learning. Early neural networks had thousands of parameters; contemporary large language models contain hundreds of billions. This explosion in parameter count has driven much of the recent progress in AI capabilities, but also raises important questions about computational cost, energy consumption, and the interpretability of what these parameters actually represent. Understanding parameter behavior — how they initialize, update, and generalize — remains a central concern in both theoretical and applied machine learning research.

Sources

  1. Parameter

    Wikipedia

Research this in Signals

Scan Parameter for yourself.

Signals turns a topic into a sourced research record you can inspect and rerun. Your first scan is free, and this one starts with Parameter already loaded, so edit it or scan as is.

Related

Related

Parameterized Model
Parameterized Model

A model whose behavior is governed by learnable numerical values called parameters.

1986Generality: 875
Parameter Size
Parameter Size

The total count of learnable weights and biases in a machine learning model.

2018Generality: 694
Parameter Space
Parameter Space

The multidimensional space of all possible values a model's parameters can take.

1986Generality: 794
Tunable Parameters
Tunable Parameters

Model variables adjusted during training to optimize performance on a given task.

1986Generality: 720
Overparameterized
Overparameterized

A model with more parameters than available training data points.

2014Generality: 590
Hyperparameter
Hyperparameter

Pre-training configuration settings that govern how a machine learning model learns.

1986Generality: 801