effectiveness of input in neural net

hi I read on http://www.mathworks.com/matlabcentral/answers/83053-regularization-in-neural-networks-help-needed that "To rank the effectiveness of each input just use randperm to scramble it's order and record the resulting increase in mse."
Can you please help to elaborate how that can be done?
Thanks.

 採用された回答

Greg Heath
Greg Heath 2016 年 1 月 24 日

0 投票

I don't know how to be any clearer than that. So, why don't you submit your code and I can comment

2 件のコメント

h c
h c 2016 年 1 月 24 日
hi Greg - thanks for the prompt response. I prepare my input outside of matlab so I don't exactly have that code for comment, but maybe I can ask a clarifying question (I just didn't know what "it's order" in the original statement was referring to). Did you mean to use randperm to change order of all input values of a specific feature, and measure resulting increase in mse? Then do it in turn for other features, and then the feature with biggest increase in mse is the most effective, etc.?
Thanks again.
Greg Heath
Greg Heath 2016 年 1 月 25 日
Yes.
However, I find it useful to use zscore or mapstd to standardize the inputs to zero-mean/unit-variance.
Then in addition to
1. input(i,1:N) --> input( i, randperm(N))
You could also use
2. input(i,1:N) --> randn(1,N)
or
3. input(i,1:N) --> zeros(1,N)
I have also found that just using the MATLAB backward or forward ranking algorithms on a linear coefficient model tends to yield good results.
Hope this helps.
Greg

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDeep Learning Toolbox についてさらに検索

質問済み:

h c
2016 年 1 月 24 日

コメント済み:

2016 年 1 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by