Hi,
in Brian 2 there is no ExponentialSTDP class, you'll have to make
the changes to the equations/statements yourself. For a
nearest-neighbour scheme, you'll have to set the pre- and
post-synaptic traces to fixed values (so that they "forget" about
previous values) instead of incrementing them with each spike. If
you use the formulation from our STDP example, this means to
replace "Apre += dApre" and "Apost += dApost" by "Apre = dApre"
and "Apost = dApost".
A nice paper on the formulation of different variants of STDP
rules is:
Morrison, Abigail, Markus Diesmann, and Wulfram Gerstner.
‘Phenomenological Models of Synaptic Plasticity Based on Spike
Timing’. Biological Cybernetics 98, no. 6 (1 June 2008): 459–78.
http://link.springer.com/article/10.1007/s00422-008-0233-1/fulltext.html
Best,
Marcel