MATLAB: Help in neural network

code generationDeep Learning Toolboxneural networkneural networksnumerical integrationprogrammingregression

Hello every one I am try to make neural network to predict permeability in oil field from wireline log so I have 5 input and one target I normaliz data to -1 and 1 but when I train network did not give me good r2 just 0.58 some time 0.62 what I do to reach r2 0.92 Many thanks muhammed

Best Answer

The optimal value for H is usually obtained by trial and error. For each candidate value for H design Ntrials nets with different random initial weights.
I have posted many, many examples using a double for loop over H and weight initializations. Search NEWSGROUP and ANSWERS for the latest examples using
greg fitnet Ntrials
If you have the current functions FITNET (regression/curve-fitting)and PATTERNNET(classification/pattern-recognition) that automatically call FEEDFORWARDNET, use them instead of the OBSOLETE functions NEWFIT and NEWPR that automatically call NEWFF.
Hope this helps.
Thank you for formally accepting my answer
Greg