Influence of input parameters in Neural networks

3 views (last 30 days)
G'day
Im trying to find out the influence of different inputs in neural networks
eg. if i have 6 inputs and 1 target output which of those 6 inputs has the most influence/weighting on the output.
is there an easy way to find this out??
Cheers
  1 Comment
Greg Heath
Greg Heath on 28 Apr 2014
Terminology: Input variables, not parameters. Parameters are constant during each use.

Sign in to comment.

Accepted Answer

Greg Heath
Greg Heath on 26 Apr 2014
Edited: Greg Heath on 26 Apr 2014
1. Minimize the number of hidden nodes that will yield the desired goal.
2. Compare the performance of the 6 nets that result when the input from only one of the original variables is randomly scrambled. For example,
input(i,:) = input0( i , randperm(1:N));
3. Repeat with different RNG states until the choice is clear.
Hope this helps.
Thank you for formally accepting my answer
Greg
  1 Comment
Greg Heath
Greg Heath on 26 Apr 2014
Compare with the results from the linear model obtained from stepwisefit in the backward mode.

Sign in to comment.

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!