Reputation: 141
may I know what is the transfer function used by MATLAB nprtool? Thank you and your help is greatly appreciated.
Upvotes: 1
Views: 947
Reputation: 21
If you have already created your neural network you can see which function is being used in any layer by typing this command in the console:
mynet.layers{i}.transferFcn
...where 'mynet' is your net name and 'i' is an integer number pointing to a layer. This works for any standard multilayer architecture.
Upvotes: 1