Neural network training function error modulo a number
Mostrar comentarios más antiguos
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?
Respuestas (1)
Greg Heath
el 10 de Abr. de 2018
0 votos
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
1 comentario
Kostas Sarrigeorgidis
el 10 de Abr. de 2018
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!