Neural Networks, Custom performance function
Mostra commenti meno recenti
Hello,
How do you implement a neural network with a user defined performance function?
Say I have created a function AsymPerformance.m :
------
funtion ret = AsymPerformance(y,yHatFromNN)
ret = (y > yHatFromNN) * abs(yHatFromNN - y)' .* 2 + (y < yhatFromNN) * abs(yHatFromNN - y);
end
-------
How do I train my NN to optimise minimising this as a measure of performance?
Please try to keep it simple, new to NN..
Thank you in advance!
Kris
Risposte (1)
Kristoffer Uppheim
il 24 Mar 2011
0 voti
1 Commento
Omer
il 30 Gen 2014
It is little complicated do understand. There is no easy way?
Categorie
Scopri di più su Deep Learning Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!