how can change the output of neural network?
이전 댓글 표시
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?
채택된 답변
추가 답변 (1개)
Greg Heath
2013년 7월 31일
output1 = net(input);
output2 = output1 + addednumber
rndoutput1 = round(output1)
absoutput1 = abs(output1)
Or am Imissing something?
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!