sensitivity analysis ANN

조회 수: 18 (최근 30일)
p p saklecha
p p saklecha 2011년 4월 12일
댓글: Carlos M. Velez S. 2014년 9월 5일
how to carry out sensitivity analysis i.e. effect of an input parameter on output parameter, in artificial neural network tool box
  댓글 수: 1
Carlos M. Velez S.
Carlos M. Velez S. 2014년 9월 5일
I recommend this Matlab code for implementation of Monte Carlo method for sensitivity analysis of Simulink models: http://www.mathworks.com/matlabcentral/fileexchange/47758-sensitivity-analysis-in-simulink-models-with-monte-carlo-method

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2011년 10월 15일
Please clarify your terminology. What are some examples of input parameters? Ditto for output parameters.
For sensitivity analysis of input variables and weights:
Standardize (zero-mean/unit-variance) training inputs and use the original means and standard deviations to normalize the validation and test sets.
Repeat the process for regression net outputs.
For pattern recognition nets with c classes, use one-of-c binary normalization (each column of the target matrix is a column of the c-dimensional unit matrix).
The easiest way to test variable sensitivity is to randomly reorder the row for the variable in question and obtain the resulting summary statistics (e.g, min/median/mean/std/max or quartiles) of the chosen MOP (i.e., measure of performance ; e.g., normalized mean-squared error, NMSE or the coefficient of determination R^2). Training data MOPs should be degree-of-freedom adjusted to mitigate the optimistic bias. Validation and test set estimates are assumed to be unbiased.
The easiest way to test weight sensitivity is to repeatedly randomize the weight in question and obtain the resulting summary statistics.
These techniques have been used iteratively to eliminate ineffective variables and/or weights. As usual for greedy searches, the results are suboptimal but are obtained relatively quickly.
Hope this helps.
Greg
  댓글 수: 1
Arso
Arso 2013년 10월 20일
편집: Arso 2013년 10월 20일
Hi all,
the solution is here http://www.sciencedirect.com/science/article/pii/S0169260799000462 - you will have to code it by yourself. Statistica has implemented this features, Matlab implementation of ANN is missing a lot of options for performing serious analysis.
I think that during the last years evolution of Matlab (which is commercal) has relid on the community too much - in the most cases codes provided by users were more usefull for me than those provided by toolboxes.
best,
Arso V.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Control Design in Simulink에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by