Is it Possible to extract Regression equation of the Regression Plots in Neural Network Toolbar
Mostra commenti meno recenti
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.
Risposta accettata
Più risposte (4)
Vijayaraghavan
il 20 Nov 2012
0 voti
Greg Heath
il 20 Nov 2012
0 voti
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
il 20 Nov 2012
0 voti
1 Commento
Greg Heath
il 20 Nov 2012
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
il 16 Mag 2013
0 voti
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
Categorie
Scopri di più su Deep Learning Toolbox in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!