Quick question about learning rates... #614
Answered
by
Hananel-Hazan
rafaelblevin821
asked this question in
Q&A
-
So nu accepts a pair of learning rates for both the pre-synaptic and post-synaptic weight updates in the PostPre learning rule. If only one learning rate is defined, does the network use this value for both pre-synaptic and post-synaptic weight calculations, or does it only use this only for the pre-synaptic weight calculation and no learning rate multiplier for the post-synaptic weight calculation? |
Beta Was this translation helpful? Give feedback.
Answered by
Hananel-Hazan
Feb 10, 2023
Replies: 1 comment 1 reply
-
From the code documentation
Looking on the code here if a nu is set with single int or float, then both pre and post has the same value. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rafaelblevin821
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the code documentation
Looking on the code here if a nu is set with single int or float, then both pre and post has the same value.