Hi Everyone,
Could you please suggest to me how to obtain an empirical equation that shows the relationship between input and output variables in ANN?
I used the following in MATLAB, and I am getting answers that are different from the model-predicted answers.
w1=net.iW{1,1};
w2=net.lW{2,1};
b1=net.b{1,1};
b2=net.b{2,1};
Output=biasoutputlayer +weightoutputlayer*tanh(biashiddenlayer+(weighthiddenlayer*inputs));
I would really appreciate it if you could advise me in this regard.
Thanks