how can change the output of neural network?
Show older comments
I want to add a number to output of NN ,or use 'round' or 'abs' for output to reduse the error of network how can I do that?
Accepted Answer
More Answers (1)
Greg Heath
on 31 Jul 2013
output1 = net(input);
output2 = output1 + addednumber
rndoutput1 = round(output1)
absoutput1 = abs(output1)
Or am Imissing something?
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!