how can change the output of neural network?
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (1)
Greg Heath
el 31 de Jul. de 2013
output1 = net(input);
output2 = output1 + addednumber
rndoutput1 = round(output1)
absoutput1 = abs(output1)
Or am Imissing something?
1 comentario
mehdi
el 2 de Ag. de 2013
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!