- Timestamp:
- 09/06/11 08:05:58 (9 months ago)
- File:
-
- 1 edited
-
trunk/gmdh-t-ann/gmdhNew.m (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gmdh-t-ann/gmdhNew.m
r32 r35 2 2 % 3 3 % Creates a new GMDH network structure. With no more parameters than the 4 % input count, the returned network will follow the default PNN structure ,5 % whereeach layer has n!/(2(p-2)!) elements with two inputs, where n is4 % input count, the returned network will follow the default PNN structure: 5 % each layer has n!/(2(p-2)!) elements with two inputs, where n is 6 6 % the number of system inputs for the input layer or the number or elements 7 7 % of the previous layer, for hidden layers. … … 26 26 % contribute to the output of the network. 27 27 % 28 % trainFunction Specify the network training algorithm. Currently,29 % the available value is 'gmdhTrainMeanSquare'.30 %31 28 % layerTrainFunction Specify the layer training algorithm. Currently, 32 29 % the available value is 'gmdhTrainMeanSquareLayer'. … … 37 34 % to true. 38 35 % 39 % selectMethodDefines the method for excluding the badly36 % selectMethod Defines the method for excluding the badly 40 37 % performancing neurons in each layer during the 41 38 % training. Two methods are available: … … 100 97 % 101 98 % Basic train parameters 102 gmdhNet.trainParams.maxLayerNeurons = 30; 99 if gmdhNet.isCombi && strcmpi(selectMethod, 'selectBest') 100 gmdhNet.trainParams.maxLayerNeurons = 5; 101 else 102 gmdhNet.trainParams.maxLayerNeurons = 30; 103 end 103 104 gmdhNet.trainParams.minLayerNeurons = 1; 104 105 gmdhNet.trainParams.logs = true;
Note: See TracChangeset
for help on using the changeset viewer.
