You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mdCNN: Multidimensional CNN library in Matlab
Hellow again,
I can´t find how the Learning rate is being updated. Could you tell me wich ecuation does that? This is the only information i have found:
net.hyperParam.ni_initial= 0.05;% ni to
start training process
net.hyperParam.ni_final
= 0.00001;% final ni to stop the training process
Thanks!
Hagay Garty
unread,
Feb 7, 2019, 8:03:51 AM2/7/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mdCNN: Multidimensional CNN library in Matlab
learning rate starts from ni_initial and after 'noImprovementTh' consecutive iterations with no improvement in loss value, the learning rate is reduced by half.
when learning rate drops below ni_final training stops.