how can change the output of neural network?
Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (1)
Greg Heath
am 31 Jul. 2013
output1 = net(input);
output2 = output1 + addednumber
rndoutput1 = round(output1)
absoutput1 = abs(output1)
Or am Imissing something?
1 Kommentar
mehdi
am 2 Aug. 2013
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!