Neural network training function error modulo a number
이전 댓글 표시
How can I tell neural network training function to compute the error modulo a number.? For example if my targets are angles in degrees and the desired is 359 but the predictor gave me 2 degrees, the error is large (359-2)^2. How can you tell neural network to treat 2 as 360-2, such that the error is now (359-358)^2?
답변 (1개)
Greg Heath
2018년 4월 10일
0 개 추천
The simplest function that makes perfect sense is the corresponding squared Euclidean distance between corresponding points on the unit circle.
Other than taking the square root to obtain linear distance, I see no reason to waste computation to use any other function of distance,
Hope this helps.
Thank you for formally accepting my answer
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!