Concept

ADALINE

Summary
ADALINE (Adaptive Linear Neuron or later Adaptive Linear Element) is an early single-layer artificial neural network and the name of the physical device that implemented this network. The network uses memistors. It was developed by professor Bernard Widrow and his doctoral student Ted Hoff at Stanford University in 1960. It is based on the perceptron. It consists of a weight, a bias and a summation function. The difference between Adaline and the standard (McCulloch–Pitts) perceptron is in how they learn. Adaline unit weights are adjusted to match a teacher signal, before applying the Heaviside function (see figure), but the standard perceptron unit weights are adjusted to match the correct output, after applying the Heaviside function. A multilayer network of ADALINE units is a MADALINE. Adaline is a single layer neural network with multiple nodes where each node accepts multiple inputs and generates one output. Given the following variables as: is the input vector is the weight vector is the number of inputs some constant is the output of the model then we find that the output is . If we further assume that then the output further reduces to: The learning rule used by ADALINE is the LMS ("least mean squares") algorithm, a special case of gradient descent. Define the following notations: is the learning rate (some positive constant) is the output of the model is the target (desired) output is the square of the error. The LMS algorithm updates the weights by This update rule minimizes , the square of the error, and is in fact the stochastic gradient descent update for linear regression. MADALINE (Many ADALINE) is a three-layer (input, hidden, output), fully connected, feed-forward artificial neural network architecture for classification that uses ADALINE units in its hidden and output layers, i.e. its activation function is the sign function. The three-layer network uses memistors. Three different training algorithms for MADALINE networks, which cannot be learned using backpropagation because the sign function is not differentiable, have been suggested, called Rule I, Rule II and Rule III.
About this result
This page is automatically generated and may contain information that is not correct, complete, up-to-date, or relevant to your search query. The same applies to every other page on this website. Please make sure to verify the information with EPFL's official sources.