MATLAB: How can set a target value of a error of 0.001 between the target values, output values of trained neural network

nn

How can I set a target value of a error of 0.001 between my target values, output values of trained neural network?

Best Answer

msegoal = 0.001*mean(var(target',1))
This results in a Rsquare of 99.9%
Hope this helps.
Greg