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. Radial Basis Function Network

Radial Basis Function Network

A neural network using radial basis functions as hidden-layer activations for function approximation.

Year: 1988Generality: 563
Back to Vocab

A Radial Basis Function Network (RBFN) is a three-layer artificial neural network in which the hidden units apply radial basis functions, most commonly Gaussians, as their activation functions. In standard feedforward networks, activations depend on a weighted sum of inputs. In an RBFN, each hidden neuron instead computes a distance-based response: it measures how far an input vector lies from a learned center point and produces an output that decreases (or increases) monotonically with that distance. The final output layer then combines these responses through a linear weighted sum, making the overall mapping a linear combination of localized, radially symmetric basis functions.

Training an RBFN typically proceeds in two stages. First, the centers of the radial basis functions are determined, often through unsupervised methods like k-means clustering on the training data, or by selecting a subset of training points directly. Second, the output-layer weights are fitted using linear least squares, which is computationally cheap and avoids the vanishing gradient problems that can affect deep networks trained end-to-end. This decoupled training procedure gives RBFNs a speed advantage over multilayer perceptrons in many settings, and the linear output stage guarantees a unique, globally optimal solution for the weights given fixed centers.

RBFNs are well-suited to interpolation and function approximation tasks because each basis function acts as a local detector, responding strongly only to inputs near its center. This locality means the network can model nonlinear mappings while remaining interpretable, since the contribution of each hidden unit is spatially bounded and easy to visualize. Applications have included time-series forecasting, control systems, classification, and density estimation. They also connect to kernel methods and Gaussian processes, providing a bridge between neural network and statistical learning perspectives.

Deep learning has largely supplanted RBFNs for large-scale perception tasks, but they remain relevant where training data is limited, fast training is essential, or interpretability matters. Their theoretical properties, including universal approximation, convex output-layer optimization, and clear geometric interpretation, make them a useful reference point among neural network architectures.

Sources

  1. Radial basis function network

    Wikipedia

Research this in Signals

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

Related

Related

Restricted Boltzmann Machines (RBMs)
Restricted Boltzmann Machines (RBMs)

Generative neural networks that learn probability distributions over input data using two layers.

2006Generality: 692
DBN (Deep Belief Network)
DBN (Deep Belief Network)

A generative neural network built from stacked Restricted Boltzmann Machines trained layer by layer.

2006Generality: 694
Neural Network
Neural Network

A layered system of interconnected nodes that learns patterns from data.

1986Generality: 947
Feedforward Neural Network
Feedforward Neural Network

A neural network architecture where information flows strictly from input to output.

1986Generality: 838
RNN (Recurrent Neural Network)
RNN (Recurrent Neural Network)

Neural networks with feedback connections that process sequential data using internal memory.

1986Generality: 838
Boltzmann Machine
Boltzmann Machine

A stochastic recurrent network that learns probability distributions over binary variables.

1985Generality: 694