home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / tools / doc / feedback-gennet.doc < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.4 KB  |  45 lines

  1.                =======================================
  2.                Description of the tool FEEDBACK-GENNET
  3.                =======================================
  4.  
  5. The program 'feedback-gennet' generates network definition files for
  6. fully recurrent networks of any size. This is not possible using bignet. 
  7.  
  8. The networks have the following structure:
  9.  
  10.   - input layer with no intra layer connections
  11.   - fully recurrent hidden layer
  12.   - output layer: connections from each hidden unit to each output unit AND
  13.     OPTIONALLY fully recurrent intra layer connections in the output layer AND
  14.     OPTIONALLY feedback connections from each output unit to each hidden unit
  15.  
  16. The activation function of the output units can be set to sigmoidal or linear.
  17. All weights are initialized with 0.0 . Other initializations should be
  18. performed by the init functions in SNNS.
  19.  
  20.  
  21. Synopsis:
  22. ---------
  23.  
  24. feedback-gennet
  25.  
  26. Examples:
  27. ---------
  28.  
  29. Generate a network with 3 input units, 3 hidden units connected to
  30. each input unit, each hidden unit and itself, and 1 output unit
  31. with sigmoid activation function connected to each hidden unit.
  32.  
  33. feedback-gennet
  34. Enter # input units:3
  35. Enter # hidden units:3
  36. Enter # output units:1
  37. INTRA layer connections in the output layer (y/n):n
  38. feedback connections from output to hidden units (y/n):n
  39. Linear output activation function (y/n):n
  40. Enter name of network file:xor-rec.net
  41. working...
  42. generated xor-rec.net
  43.  
  44.  
  45.