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. Hyperparameter

Hyperparameter

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

Year: 1986Generality: 801
Back to Vocab

Hyperparameters are configuration values set before training begins that control the structure and behavior of a machine learning model. They differ from parameters, which are learned directly from data. Common examples include the learning rate in gradient descent, the number of layers and neurons in a neural network, the depth of a decision tree, regularization coefficients, batch size, and dropout rates. Since hyperparameters are not updated during training, they must be chosen deliberately. Their values can substantially affect whether a model converges, overfits, underfits, or generalizes well to new data.

The process of finding good hyperparameter values is called hyperparameter optimization or tuning. The simplest approach, grid search, exhaustively evaluates all combinations of candidate values across a predefined grid. Random search samples combinations stochastically and often finds competitive results more efficiently. More sophisticated methods include Bayesian optimization, which builds a probabilistic surrogate model of the objective function to select the next configuration to evaluate, and gradient-based methods that treat hyperparameter selection as a differentiable problem. Automated machine learning (AutoML) frameworks increasingly handle this process end-to-end.

Hyperparameters matter because no single configuration works universally across datasets and tasks. A learning rate that trains one network efficiently may cause another to diverge or stall. Regularization strength must be calibrated to the complexity of the data and model to avoid overfitting or underfitting. As models have grown in scale and complexity, particularly with deep neural networks, the hyperparameter search space has expanded, making principled tuning strategies essential.

The concept has been present in machine learning since early work on neural networks and statistical learning in the 1980s. Systematic hyperparameter optimization became a recognized research area in its own right as deep learning scaled up in the 2000s and 2010s. Today, hyperparameter tuning is a standard step in model development pipelines, and tools like Optuna, Ray Tune, and Keras Tuner have made automated optimization accessible to practitioners across the field.

Sources

  1. Hyperparameter optimization

    Wikipedia

Research this in Signals

Scan Hyperparameter 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 Hyperparameter already loaded, so edit it or scan as is.

Related

Related

Hyperparameter Tuning
Hyperparameter Tuning

Optimizing model configuration settings that are set before training begins.

2000Generality: 794
Tunable Parameters
Tunable Parameters

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

1986Generality: 720
Parameter
Parameter

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

1950Generality: 928
Parameterized Model
Parameterized Model

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

1986Generality: 875
Parameter Space
Parameter Space

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

1986Generality: 794
Overparameterized
Overparameterized

A model with more parameters than available training data points.

2014Generality: 590