Is it Possible to extract Regression equation of the Regression Plots in Neural Network Toolbar
이전 댓글 표시
Hi, I am new in using Neural Network tool bar , I have a difficulty. Eg : I have a Input Data set of 30*52 and my target data set is 30*16 . I train it and i get Regression plots. Once i get the regression plots is it possible to extract the equation from the plots. As it is specific to use Neural Network and execute the work i am badly needing to extract the data out of the Figure to a excel sheet. Kindly help me with the above Problem.
채택된 답변
추가 답변 (4개)
Greg Heath
2012년 11월 20일
0 개 추천
i am surprised and confused by your last setence.
The regression equation associated with the training function is output vs target, and is only valid for 1-D targets and outputs. Inputs are not involved.
The nonlinear I/O multivariate regression equation for the default fitnet or feedforwardnet is
y = b1 + LW*tansig(b1 + IW*x)
which cannot be decomposed into a sum of fuctions of single input variables.
Greg
Vijayaraghavan
2012년 11월 20일
0 개 추천
댓글 수: 1
Greg Heath
2012년 11월 20일
I do not understand exactly what you want. The I/O equation I wrote is the default. Please write exactly what you are looking for in a similar form.
The general form is
y = activation2( b2 + LW * activation1( b1 + IW * x ) )
where
size(x) = [I N ]
size(IW) = [ H I ]
size(b1) = [ H N ] %repmat([H 1],1,N)
size(LW) = [ O H ]
size(b2) = [ O N ] %repmat([O 1],1,N)
Imran Babar
2013년 5월 16일
0 개 추천
Hi I have a data of 649 patterns and with 31 inputs in 1 pattern and with 1 output only how I will draw the regression plot. Though I am using the following syntax but the graph is not a straight line
plotregression(targetdata,predicted,'Regression')
and my target data is like the following one
0 1 2 3 4 5 6 7 2 3 4 5 6 7 8 9 4 5 6 7 8 9 7 8 9 10 11 12 13 14 and so on upto 649 values for each input pattern of 31 values
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!