Great to hear!
It should be possible to set lambda on all STDP synapses at once. For example:
neurons = nest.Create("iaf_psc_exp", 10)
nest.Connect(neurons, neurons, "all_to_all", syn_spec={"synapse_model": "stdp_synapse"})
nest.GetConnections(synapse_model="stdp_synapse").get("lambda")
nest.GetConnections(synapse_model="stdp_synapse").set({"lambda": 0})
With kind regards,
Charl
On Tue, Dec 10, 2024, at 10:52, Aditya Srivastava wrote:
> So I reconstructed the whole network from beginning and then connected
> them through static_synapse with trained weights and it worked .
>
> But I want to know how I can set the lambda as 0 after training because
> if I am doing nest.GetConnections() then I am not getting the property
> of lambda to modify so how can I set just the lambda as 0 after
> training for testing the model?
> _______________________________________________