Which type of learning rule is used in eth_mnist example? #556
rafaelblevin821
started this conversation in
General
Replies: 2 comments 2 replies
-
Yes, the Diehl and Cook model is defined in models.py, and the learning
rule rule is PostPre, just as you thought:
# Connections
w = 0.3 * torch.rand(self.n_inpt, self.n_neurons)
input_exc_conn = Connection(
source=input_layer,
target=exc_layer,
w=w,
update_rule=PostPre,
nu=nu,
reduction=reduction,
wmin=wmin,
wmax=wmax,
norm=norm,
)
…On Mon, Jun 20, 2022 at 2:25 PM davidh_tsp ***@***.***> wrote:
I understand it's based on the Diehl and Cook model, but I cannot see
anywhere in the code where it specifies either STDP or PosPre? Does the
learning rule automatically come built into the Diehl and Cook imported
model?
—
Reply to this email directly, view it on GitHub
<#556>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKZ2IOHURQL3WHHIBN6TJS3VQBPM5ANCNFSM5ZIYBPWQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
2 replies
-
Thank you both for the information. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I understand it's based on the Diehl and Cook model, but I cannot see anywhere in the code where it specifies either STDP or PosPre? Does the learning rule automatically come built into the Diehl and Cook imported model?
Beta Was this translation helpful? Give feedback.
All reactions