how can change the output of neural network?
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
Greg Heath
le 31 Juil 2013
output1 = net(input);
output2 = output1 + addednumber
rndoutput1 = round(output1)
absoutput1 = abs(output1)
Or am Imissing something?
1 commentaire
mehdi
le 2 Août 2013
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!