Extreme learning machine


Extreme learning machines are feedforward neural networks for classification, regression, clustering, sparse approximation, compression and feature learning with a single layer or multiple layers of hidden nodes, where the parameters of hidden nodes need not be tuned. These hidden nodes can be randomly assigned and never updated, or can be inherited from their ancestors without being changed. In most cases, the output weights of hidden nodes are usually learned in a single step, which essentially amounts to learning a linear model. The name "extreme learning machine" was given to such models by its main inventor Guang-Bin Huang.
According to their creators, these models are able to produce good generalization performance and learn thousands of times faster than networks trained using backpropagation. In literature, it also shows that these models can outperform support vector machines in both classification and regression applications.

History

From 2001-2010, ELM research mainly focused on the unified learning framework for "generalized" single-hidden layer feedforward neural networks, including but not limited to sigmoid networks, RBF networks, threshold networks, trigonometric networks, fuzzy inference systems, Fourier series, Laplacian transform, wavelet networks, etc. One significant achievement made in those years is to successfully prove the universal approximation and classification capabilities of ELM in theory.
From 2010 to 2015, ELM research extended to the unified learning framework for kernel learning, SVM and a few typical feature learning methods such as Principal Component Analysis and Non-negative Matrix Factorization. It is shown that SVM actually provides suboptimal solutions compared to ELM, and ELM can provide the whitebox kernel mapping, which is implemented by ELM random feature mapping, instead of the blackbox kernel used in SVM. PCA and NMF can be considered as special cases where linear hidden nodes are used in ELM.
From 2015 to 2017, an increased focus has been placed on hierarchical implementations of ELM. Additionally since 2011, significant biological studies have been made that support certain ELM theories.
From 2017 onwards, to overcome low-convergence problem during training LU decomposition, Hessenberg decomposition and QR decomposition based approaches with regularization have begun to attract attention
In a 2017 announcement from Google Scholar: "", two ELM papers have been listed in the "," taking positions 2 and 7.

Algorithms

Given a single hidden layer of ELM, suppose that the output function of the -th hidden node is, where and are the parameters of the -th hidden node. The output function of the ELM for SLFNs with hidden nodes is:
, where is the output weight of the -th hidden node.
is the hidden layer output mapping of ELM. Given training samples, the hidden layer output matrix of ELM is given as:
and is the training data target matrix:
Generally speaking, ELM is a kind of regularization neural networks but with non-tuned hidden layer mappings, its objective function is:
where.
Different combinations of,, and can be used and result in different learning algorithms for regression, classification, sparse coding, compression, feature learning and clustering.
As a special case, a simplest ELM training algorithm learns a model of the form :
where is the matrix of input-to-hidden-layer weights, is an activation function, and is the matrix of hidden-to-output-layer weights. The algorithm proceeds as follows:
  1. Fill with random values ;
  2. estimate by least-squares fit to a matrix of response variables, computed using the pseudoinverse, given a design matrix :
  3. :

    Architectures

In most cases, ELM is used as a single hidden layer feedforward network including but not limited to sigmoid networks, RBF networks, threshold networks, fuzzy inference networks, complex neural networks, wavelet networks, Fourier transform, Laplacian transform, etc. Due to its different learning algorithm implementations for regression, classification, sparse coding, compression, feature learning and clustering, multi ELMs have been used to form multi hidden layer networks, deep learning or hierarchical networks.
A hidden node in ELM is a computational element, which need not be considered as classical neuron. A hidden node in ELM can be classical artificial neurons, basis functions, or a subnetwork formed by some hidden nodes.

Theories

Both universal approximation and classification capabilities have been proved for ELM in literature. Especially, and his team spent almost seven years on the rigorous proofs of ELM's universal approximation capability.

Universal approximation capability

In theory, any nonconstant piecewise continuous function can be used as activation function in ELM hidden nodes, such an activation function need not be differential. If tuning the parameters of hidden nodes could make SLFNs approximate any target function, then hidden node parameters can be randomly generated according to any continuous distribution probability, and holds with probability one with appropriate output weights.

Classification capability

Given any nonconstant piecewise continuous function as the activation function in SLFNs, if tuning the parameters of hidden nodes can make SLFNs approximate any target function, then SLFNs with random hidden layer mapping can separate arbitrary disjoint regions of any shapes.

Neurons

Wide type of nonlinear piecewise continuous functions can be used in hidden neurons of ELM, for example:

Real domain

Sigmoid function:
Fourier function:
Hardlimit function:
Gaussian function:
Multiquadrics function:
Wavelet: where is a single mother wavelet function.

Complex domain

Circular functions:
Inverse circular functions:
Hyperbolic functions:
Inverse hyperbolic functions:

Reliability

The black-box character of neural networks in general and extreme learning machines in particular is one of the major concerns that repels engineers from application in unsafe automation tasks. This particular issue was approached by means of several different techniques. One approach is to reduce the dependence on the random input. Another approach focuses on the incorporation of continuous constraints into the learning process of ELMs which are derived from prior knowledge about the specific task. This is reasonable, because machine learning solutions have to guarantee a safe operation in many application domains. The mentioned studies revealed that the special form of ELMs, with its functional separation and the linear read-out weights, is particularly well suited for the efficient incorporation of continuous constraints in predefined regions of the input space.

Controversy

There are two main complaints from academic community concerning this work, the first one is about "reinventing and ignoring previous ideas", the second one is about "improper naming and popularizing", as shown in some debates in 2008 and 2015. In particular, it was pointed out in a letter to the editor of IEEE Transactions on Neural Networks that the idea of using a hidden layer connected to the inputs by random untrained weights was already suggested in the original papers on RBF networks in the late 1980s; Guang-Bin Huang replied by pointing out subtle differences. In a 2015 paper, Huang responded to complaints about his invention of the name ELM for already-existing methods, complaining of "very negative and unhelpful comments on ELM in neither academic nor professional manner due to various reasons and intentions" and an "irresponsible anonymous attack which intends to destroy harmony research environment", arguing that his work "provides a unifying learning platform" for various types of neural nets, including hierarchical structured ELM. In 2015, Huang also gave a formal rebuttal to what he considered as "malign and attack." Recent research replaces the random weights with constrained random weights.

Open sources