ADALINE

You don't need to be Editor-In-Chief to add or edit content to WikiDoc. You can begin to add to or edit text on this WikiDoc page by clicking on the edit button at the top of this page. Next enter or edit the information that you would like to appear here. Once you are done editing, scroll down and click the Save page button at the bottom of the page.

Jump to: navigation, search

ADALINE (Adaptive Linear Neuron or later Adaptive Linear Element) is a single layer neural network. It was developed by Professor Bernard Widrow and his graduate student Ted Hoff at Stanford University in 1960. It is based on the McCulloch-Pitts neuron. It consists of a weight, a bias and a summation function.

Image:Adaline.gif
Learning inside a single layer ADALINE

Definition

Adaline is a single layer neural network with multiple nodes where each node accepts multiple inputs and generates one output. Given the following variables:

  • x is the input vector
  • w is the weight vector
  • n is the number of nodes
  • θ some constant
  • y is the output

then we find that the output is y=\sum_{j}^n x_j w_j + \theta. If we further assume that

  • xn + 1 = 1
  • wn + 1 = θ

then the output reduces to the dot product of x and w y=x_j \cdot w_j

Learning Algorithm

Let us assume:

  • η is the learning rate (some constant)
  • d is the desired output
  • o is the actual output

then the weights are updated as follows w \leftarrow w + \eta(d-o)x. The ADALINE converges to the least squares error which is E = (do)2. For a more comprehensive proof, see Adaline (Adaptive Linear)

Bibliography

Delta Learning Rule: ADALINE
Adaline (Adaptive Linear)
Perceptron and ADALINE


WikiDoc Help Menu

Quick Start..

Editing basics

Advanced editing

Communicating your edits

Help Videos You Can Watch

Acknowledgement and Attribution Regarding Sources of Content

Some of the initial content on this page may be incorporated in part from copyleft sources in the public domain including wikis such as Wikipedia and AskDrWiki. Drug information for patients came from the The National Library of Medicine. Infectious disease information may have come from the Centers for Disease Control (CDC). Differential Diagnoses are drawn from clinicians as well as an amalgamation of 3 sources: 1.The Disease Database; 2. Kahan, Scott, Smith, Ellen G. In A Page: Signs and Symptoms. Malden, Massachusetts: Blackwell Publishing, 2004:3; 3. Sailer, Christian, Wasner, Susanne. Differential Diagnosis Pocket. Hermosa Beach, CA: Borm Bruckmeir Publishing LLC, 2002:7 .

In other languages