Difference between revisions of "Neural Networks"

From Artificial Neural Network for PHP
Line 16: Line 16:
   
 
There are a few very interesting uses of artificial neural networks. For example, the local electricity factory in Duesseldorf, Germany is using an multilayer perceptron for daily prediction of power use in the city referring to temperature, humidity, day, etc. Another example is the prediction how many articles of a product in a supermarket will be sold in one week. With this information it is possible to calculate much better the use of the articles ordering and storage. Or such a network is used to predict the among of daily calls in a call centre to plan how many co-workers have to work that day. Or the German Post is using neural networks in recognition of post codes (PLZ) written on letters by computer or manually. After recognition a computer readable code is printed on the letter so further recognition is not necessary again. Artificial neural networks are also used to find a numeric solution of difficult mathematical functions. The network can associate the output of a function getting one or more unknown inputs. This is just possible by learning known inputs and outputs. The artificial network has an "idea" of the mathematical rule.
 
There are a few very interesting uses of artificial neural networks. For example, the local electricity factory in Duesseldorf, Germany is using an multilayer perceptron for daily prediction of power use in the city referring to temperature, humidity, day, etc. Another example is the prediction how many articles of a product in a supermarket will be sold in one week. With this information it is possible to calculate much better the use of the articles ordering and storage. Or such a network is used to predict the among of daily calls in a call centre to plan how many co-workers have to work that day. Or the German Post is using neural networks in recognition of post codes (PLZ) written on letters by computer or manually. After recognition a computer readable code is printed on the letter so further recognition is not necessary again. Artificial neural networks are also used to find a numeric solution of difficult mathematical functions. The network can associate the output of a function getting one or more unknown inputs. This is just possible by learning known inputs and outputs. The artificial network has an "idea" of the mathematical rule.
  +
  +
* '''How to train an artificial neural network?'''
  +
  +
Like a human brain has to do, too. Learning by doing or learning, learning and learning. The artificial neural network gets inputs and produces an output. This output will be compared with aimed output. If there is a difference between them, the network must be changed. This procedure is done as often as the output fits to the aimed output. After this the artificial networks "knows" the rules to get the right output. This will be done for all known inputs and outputs. After training you can use the "knowledge" of the network to predict or recognize known or unknown inputs to their related outputs.
  +
  +
* '''Can an artificial neural network forget?'''
  +
  +
Yes. Like a human brain is an associative working processor also an artificial network can do mistakes and can forget knowledge if inputs are trained rarely. If you as a human being trains playing piano rarely, so you cannot play it perfectly. This is similar to the artificial network.
   
 
== Information about Neural Networks ==
 
== Information about Neural Networks ==

Revision as of 10:48, 21 December 2007

Questions and Answers

  • What is a neural network?

An artificial neural network is a mathematical model of an associative biological neural network.

  • What are the differences between a biological and an artificial neural network?

Between both networks are huge differences. The neurons of a biological neural networks works parallel massively and such a network has billions or trillions of neurons connected massively. In comparison the artificial neural networks has just a few count of neurons depending on the among of data to associate by the network, e.g. 20 neurons. Such an artificial network is not connected by accident, but as a controlled and planned layer structure, where is an input layer, one or a few hidden layers and an output layer (if a multilayer perceptron topology is used). As an artificial neural network is a computer software it works sequentially and therefore there is a big difference to a biological neural network, of course.

  • What is the benefit of an artificial neural network?

The big advantage of human brain is the adaption of seen unknown things to a learned model stored in the brain's neurons. This is called association. Technically it is called an unsharpened information processing, so an artificial neural network can be used in an environment, where input information is not complete (like face recognition).

  • What are examples for technical use of artificial neural networks?

There are a few very interesting uses of artificial neural networks. For example, the local electricity factory in Duesseldorf, Germany is using an multilayer perceptron for daily prediction of power use in the city referring to temperature, humidity, day, etc. Another example is the prediction how many articles of a product in a supermarket will be sold in one week. With this information it is possible to calculate much better the use of the articles ordering and storage. Or such a network is used to predict the among of daily calls in a call centre to plan how many co-workers have to work that day. Or the German Post is using neural networks in recognition of post codes (PLZ) written on letters by computer or manually. After recognition a computer readable code is printed on the letter so further recognition is not necessary again. Artificial neural networks are also used to find a numeric solution of difficult mathematical functions. The network can associate the output of a function getting one or more unknown inputs. This is just possible by learning known inputs and outputs. The artificial network has an "idea" of the mathematical rule.

  • How to train an artificial neural network?

Like a human brain has to do, too. Learning by doing or learning, learning and learning. The artificial neural network gets inputs and produces an output. This output will be compared with aimed output. If there is a difference between them, the network must be changed. This procedure is done as often as the output fits to the aimed output. After this the artificial networks "knows" the rules to get the right output. This will be done for all known inputs and outputs. After training you can use the "knowledge" of the network to predict or recognize known or unknown inputs to their related outputs.

  • Can an artificial neural network forget?

Yes. Like a human brain is an associative working processor also an artificial network can do mistakes and can forget knowledge if inputs are trained rarely. If you as a human being trains playing piano rarely, so you cannot play it perfectly. This is similar to the artificial network.

Information about Neural Networks

English

German