Group method of data handling

From HandWiki

Group method of data handling (GMDH) is a family of inductive algorithms for computer-based mathematical modeling of multi-parametric datasets that features fully automatic structural and parametric optimization of models. GMDH is used in such fields as data mining, knowledge discovery, prediction, complex systems modeling, optimization and pattern recognition.[1] GMDH algorithms are characterized by inductive procedure that performs sorting-out of gradually complicated polynomial models and selecting the best solution by means of the external criterion. The last section of [2] contains a summary of the applications of GMDH in the 1970s.

Other names include "polynomial feedforward neural network",[3] or "self-organization of models". It was one of the first deep learning methods, used to train an eight-layer neural net in 1971.[4][5]

Mathematical content

Polynomial regression

This section is based on.[2]

This is the general problem of statistical modelling of data: Consider a dataset [math]\displaystyle{ \{(x_1, ..., x_k; y)_s\}_{s=1:n} }[/math], with [math]\displaystyle{ n }[/math] points. Each point contains [math]\displaystyle{ x_1, ..., x_k }[/math] observations, and one target [math]\displaystyle{ y }[/math] to predict. How to best predict the target based on the observations?

First, we split the full dataset into two parts: a training set and a validation set. The training set would be used to fit more and more model parameters, and the validation set would be used to decide which parameters to include, and when to stop fitting completely.

The GMDH starts by considering degree-2 polynomial in 2 variables. Suppose we want to predict the target using just the [math]\displaystyle{ i, j }[/math] parts of the observation, and using only degree-2 polynomials, then the most we can do is this:[math]\displaystyle{ y \approx f_{a,b,c,d,e,h}(x_i, x_j) := a + bx_i + cx_j + dx_i^2 + ex_j^2 + fx_{i}x_{j} }[/math]where the parameters [math]\displaystyle{ a, b, c, d, e, f }[/math] are computed by linear regression. Now, the parameters [math]\displaystyle{ a, b, c, d, e, f }[/math] depend on which [math]\displaystyle{ i, j }[/math] we have chosen, and we do not know which [math]\displaystyle{ i, j }[/math] we should choose, so we choose all of them. That is, we perform all [math]\displaystyle{ \frac 12 k(k-1) }[/math] such polynomial regressions:[math]\displaystyle{ y \approx f_{(i, j); a,b,c,d,e,h}(x_i, x_j) := a_{i,j} + b_{i,j}x_i + c_{i,j}x_j + d_{i,j}x_i^2 + e_{i,j}x_j^2 + f_{i,j}x_{i}x_{j} \quad \forall 1 \leq i \lt j \leq k }[/math]obtaining [math]\displaystyle{ \frac 12 k(k-1) }[/math] polynomial models of the dataset.

We do not want to accept all the polynomial models, since it would contain too many models. To only select the best subset of these models, we run each model [math]\displaystyle{ f_{(i, j); a,b,c,d,e,h} }[/math] on the validation dataset, and select the models whose mean-square-error is below a threshold. We also write down the smallest mean-square-error achieved as [math]\displaystyle{ minMSE_1 }[/math].

Suppose that after this process, we have obtained a set of [math]\displaystyle{ k_1 }[/math] models. We now run the models on the training dataset, to obtain a sequence of transformed observations: [math]\displaystyle{ z_1, z_2, ..., z_{k_1} }[/math]. The same algorithm can now be run again.

Fig.1. A typical distribution of minimal errors. The process terminates when a minimum is reached.

The algorithm continues, giving us [math]\displaystyle{ minMSE_1, minMSE_2, ... }[/math]. As long as each [math]\displaystyle{ minMSE }[/math] is smaller than the previous one, the process continues, giving us increasingly deep models. As soon as some [math]\displaystyle{ minMSE_{L+1} \gt minMSE_{L} }[/math], the algorithm terminates. The last layer fitted (layer [math]\displaystyle{ L+1 }[/math]) is discarded, as it has overfit the training set. The previous layers are outputted.

More sophisticated methods for deciding when to terminate are possible. For example, one might keep running the algorithm for several more steps, in the hope of passing a temporary rise in [math]\displaystyle{ minMSE }[/math].

In general

Instead of a degree-2 polynomial in 2 variables, each unit may use higher-degree polynomials in more variables:[1]

[math]\displaystyle{ Y(x_1,\dots,x_n) = a_0+\sum\limits_{i = 1}^n {a_i} x_i+\sum\limits_{i = 1}^n {\sum\limits_{j = i}^n {a_{i j} } } x_i x_j+\sum\limits_{i = 1}^n {\sum\limits_{j = i}^n{\sum\limits_{k = j}^n {a_{i j k} } } }x_i x_j x_k+\cdots }[/math]

And more generally, a GMDH model with multiple inputs and one output is a subset of components of the base function (1):

[math]\displaystyle{ Y(x_1,\dots,x_n)=a_0+\sum\limits_{i = 1}^m a_i f_i }[/math]

where fi are elementary functions dependent on different sets of inputs, ai are coefficients and m is the number of the base function components.

External criteria

External criteria are optimization objectives for the model, such as minimizing mean-squared error on the validation set, as given above. The most common criteria are:

  • Criterion of Regularity (CR) – least mean squares on a validation set.
  • Least squares on a cross-validation set.
  • Criterion of Minimum bias or Consistency – squared difference between the estimated outputs (or coefficients vectors) of two models fit on the A and B set, divided by squared predictions on the B set.[1]

Idea

Like linear regression, which fits a linear equation over data, GMDH fits arbitrarily high orders of polynomial equations over data.[6][7]

To choose between models, two or more subsets of a data sample are used, similar to the train-validation-test split.

GMDH combined ideas from:[8] black box modeling, successive genetic selection of pairwise features,[9] the Gabor's principle of "freedom of decisions choice",[10] and the Beer's principle of external additions.[11]

Inspired by an analogy between constructing a model out of noisy data, and sending messages through a noisy channel,[12] they proposed "noise-immune modelling":[6] the higher the noise, the less parameters must the optimal model have, since the noisy channel does not allow more bits to be sent through.

The model is structured as a feedforward neural network, but without restrictions on the depth, they had a procedure for automatic models structure generation, which imitates the process of biological selection with pairwise genetic features.

History

GMDH author – Soviet scientist Prof. Alexey G. Ivakhnenko.

The method was originated in 1968 by Prof. Alexey G. Ivakhnenko in the Institute of Cybernetics in Kyiv.

Period 1968–1971 is characterized by application of only regularity criterion for solving of the problems of identification, pattern recognition and short-term forecasting. As reference functions polynomials, logical nets, fuzzy Zadeh sets and Bayes probability formulas were used. Authors were stimulated by very high accuracy of forecasting with the new approach. Noise immunity was not investigated.

Period 1972–1975. The problem of modeling of noised data and incomplete information basis was solved. Multicriteria selection and utilization of additional priory information for noiseimmunity increasing were proposed. Best experiments showed that with extended definition of the optimal model by additional criterion noise level can be ten times more than signal. Then it was improved using Shannon's Theorem of General Communication theory.

Period 1976–1979. The convergence of multilayered GMDH algorithms was investigated. It was shown that some multilayered algorithms have "multilayerness error" – analogous to static error of control systems. In 1977 a solution of objective systems analysis problems by multilayered GMDH algorithms was proposed. It turned out that sorting-out by criteria ensemble finds the only optimal system of equations and therefore to show complex object elements, their main input and output variables.

Period 1980–1988. Many important theoretical results were received. It became clear that full physical models cannot be used for long-term forecasting. It was proved, that non-physical models of GMDH are more accurate for approximation and forecast than physical models of regression analysis. Two-level algorithms which use two different time scales for modeling were developed.

Since 1989 the new algorithms (AC, OCC, PF) for non-parametric modeling of fuzzy objects and SLP for expert systems were developed and investigated.[13] Present stage of GMDH development can be described as blossom out of deep learning neuronets and parallel inductive algorithms for multiprocessor computers. Such procedure is currently used in deep learning networks.[14]

GMDH-type neural networks

There are many different ways to choose an order for partial models consideration. The very first consideration order used in GMDH and originally called multilayered inductive procedure is the most popular one. It is a sorting-out of gradually complicated models generated from base function. The best model is indicated by the minimum of the external criterion characteristic. Multilayered procedure is equivalent to the Artificial Neural Network with polynomial activation function of neurons. Therefore, the algorithm with such an approach usually referred as GMDH-type Neural Network or Polynomial Neural Network. Li showed that GMDH-type neural network performed better than the classical forecasting algorithms such as Single Exponential Smooth, Double Exponential Smooth, ARIMA and back-propagation neural network.[15]

Combinatorial GMDH

Another important approach to partial models consideration that becomes more and more popular is a combinatorial search that is either limited or full. This approach has some advantages against Polynomial Neural Networks, but requires considerable computational power and thus is not effective for objects with a large number of inputs. An important achievement of Combinatorial GMDH is that it fully outperforms linear regression approach if noise level in the input data is greater than zero. It guarantees that the most optimal model will be founded during exhaustive sorting.

Basic Combinatorial algorithm makes the following steps:

  • Divides data sample at least into two samples A and B.
  • Generates subsamples from A according to partial models with steadily increasing complexity.
  • Estimates coefficients of partial models at each layer of models complexity.
  • Calculates value of external criterion for models on sample B.
  • Chooses the best model (set of models) indicated by minimal value of the criterion.
  • For the selected model of optimal complexity recalculate coefficients on a whole data sample.

In contrast to GMDH-type neural networks Combinatorial algorithm usually does not stop at the certain level of complexity because a point of increase of criterion value can be simply a local minimum, see Fig.1.

Algorithms

  • Combinatorial (COMBI)
  • Multilayered Iterative (MIA)
  • GN
  • Objective System Analysis (OSA)
  • Harmonical
  • Two-level (ARIMAD)
  • Multiplicative–Additive (MAA)
  • Objective Computer Clusterization (OCC);
  • Pointing Finger (PF) clusterization algorithm;
  • Analogues Complexing (AC)
  • Harmonical Rediscretization
  • Algorithm on the base of Multilayered Theory of Statistical Decisions (MTSD)
  • Group of Adaptive Models Evolution (GAME)

Software implementations

References

  1. 1.0 1.1 1.2 Madala, H.R.; Ivakhnenko, O.G. (1994). Inductive Learning Algorithms for Complex Systems Modeling. Boca Raton: CRC Press. ISBN 978-0849344381. http://articles.gmdh.net/theory/GMDHbook.zip. Retrieved 2019-11-17. 
  2. 2.0 2.1 Farlow, Stanley J. (November 1981). "The GMDH Algorithm of Ivakhnenko" (in en). The American Statistician 35 (4): 210–215. doi:10.1080/00031305.1981.10479358. ISSN 0003-1305. http://www.tandfonline.com/doi/abs/10.1080/00031305.1981.10479358. 
  3. Nikolaev, N.Y.; Iba, H. (March 2003). "Learning polynomial feedforward neural networks by genetic programming and backpropagation" (in en). IEEE Transactions on Neural Networks 14 (2): 337–350. doi:10.1109/TNN.2003.809405. ISSN 1045-9227. http://ieeexplore.ieee.org/document/1189632/. 
  4. Ivakhnenko, Alexey (1971). "Polynomial theory of complex systems". IEEE Transactions on Systems, Man, and Cybernetics SMC-1 (4): 364–378. doi:10.1109/TSMC.1971.4308320. http://gmdh.net/articles/history/polynomial.pdf. 
  5. Schmidhuber, Jürgen (2015). "Deep learning in neural networks: An overview". Neural Networks 61: 85–117. doi:10.1016/j.neunet.2014.09.003. PMID 25462637. 
  6. 6.0 6.1 Ivakhnenko, O.G.; Stepashko, V.S. (1985). Pomekhoustojchivost' Modelirovanija (Noise Immunity of Modeling). Kyiv: Naukova Dumka. http://articles.gmdh.net/theory/bookNoiseIm.pdf. Retrieved 2019-11-18. 
  7. Ivakhnenko, O.G.; Lapa, V.G. (1967). Cybernetics and Forecasting Techniques (Modern Analytic and Computational Methods in Science and Mathematics, v.8 ed.). American Elsevier. https://archive.org/details/cyberneticsforec0000ivak. 
  8. Ivakhenko, A.G.; Savchenko, E.A..; Ivakhenko, G.A. (October 2003). "Problems of future GMDH algorithms development" (in en). Systems Analysis Modelling Simulation 43 (10): 1301–1309. doi:10.1080/0232929032000115029. ISSN 0232-9298. http://www.tandfonline.com/doi/abs/10.1080/0232929032000115029. 
  9. Ivakhnenko, Aleksei G., and Grigorii A. Ivakhnenko. "Problems of further development of the group method of data handling algorithms. Part I." Pattern Recognition and Image Analysis c/c of raspoznavaniye obrazov i analiz izobrazhenii 10.2 (2000): 187-194.
  10. Gabor, D. (1971). Perspectives of Planing. Organization of Economic Cooperation and Development. London: Imp.Coll.. 
  11. Beer, S. (1959). Cybernetics and Management. London: English Univ. Press. 
  12. Ivahnenko, O.G. (1982). Inductive Method of Models Self-organisation for Complex Systems. Kyiv: Naukova Dumka. http://articles.gmdh.net/theory/bookInductModel.pdf. Retrieved 2019-11-18. 
  13. Ivakhnenko, O.G.; Ivakhnenko, G.A. (1995). "The Review of Problems Solvable by Algorithms of the Group Method of Data Handling (GMDH)". Pattern Recognition and Image Analysis 5 (4): 527–535. http://www.gmdh.net/articles/review/algorith.pdf. 
  14. Takao, S.; Kondo, S.; Ueno, J.; Kondo, T. (2017). "Deep feedback GMDH-type neural network and its application to medical image analysis of MRI brain images". Artificial Life and Robotics 23 (2): 161–172. doi:10.1007/s10015-017-0410-1. 
  15. Li, Rita Yi Man; Fong, Simon; Chong, Kyle Weng Sang (2017). "Forecasting the REITs and stock indices: Group Method of Data Handling Neural Network approach". Pacific Rim Property Research Journal 23 (2): 123–160. doi:10.1080/14445921.2016.1225149. 

External links

Further reading