home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / objc / ai / NeuralNetwork.README < prev    next >
Encoding:
Text File  |  1992-09-07  |  2.2 KB  |  38 lines

  1.  
  2.  
  3.     Neural Network Simulation Classes
  4.     for the NeXT Computer
  5.         By: Ralph Zazula
  6.         University of Arizona
  7.         zazula@pri.com (NeXT Mail)        
  8.  
  9. July, 29 1992
  10.         
  11.     This package contains Classes that can be used to create software simulations of neural network architectures.  These were written to facilitate rapid creation of code to explore various network topologies and learning algorithms.   The Neuron class implements a number of different types of "activation" functions including: Sigmoidal, Sgn, Tanh and Binary and also allows the use a pseudo-temperature to create a stochastic network for use in things such as simulated-annealing.  The Neuron class uses a linked-list structure to store and retrieve weights and connections amongst the Neurons resulting in very fast performance.  Also included in the distribution is the Neuron-HT class.  This variation of the Neuron class uses a HashTable structure to store the connections and weights.  The HashTable data-structure provides constant-time retrieval of the weights and connections but also introduces some overhead.  Experimental results showed that the HashTable exhibited faster performance for very large networks (>256 fully-connected Neurons).
  12.  
  13. The classes contained are:
  14.  
  15.   Neuron        Implements a number of different types of neurons
  16.   Neuron-HT    Same as above with HashTable data-structure
  17.   BackPropEngine    Implements a back-propagation network
  18.  
  19. The Example files are:
  20.  
  21. bptest    An example of using the BackPropEngine (BPE) to perform the identity function
  22.  
  23. boltz    An example of using stochastic Neurons to implement a Boltzman machine.  This example implements the XOR function
  24.  
  25. hoptest    An example of a Hopfield associative-memory network
  26.  
  27. weighted_matching    An neural-network solution to the weighted-matching problem
  28.  
  29. Other documentation can be found in the Class descriptions, code or example programs.   If you have any questions/comments, feel free to write or e-mail me.
  30.  
  31. An excellent reference on Neural-Networks is: Introduction to the Theory of Neural Computation by Hertz, Krogh and Palmer, 1991 - Addison Wesley, Publisher (ISBN 0-201-50395-6)
  32.  
  33. Ralph Zazula
  34. zazula@pri.com (NeXT Mail)
  35. (602)577-1090
  36. 4901 E. Sunrise Dr. Apt. 406
  37. Tucson, AZ 85718
  38.