forked from alberto-antonietti/CerebNEST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stdp_connection_alpha.h
446 lines (373 loc) · 12.6 KB
/
stdp_connection_alpha.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/*
* stdp_connection_alpha.h
*
* This file is part of NEST.
*
* Copyright (C) 2004 The NEST Initiative
*
* NEST is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* NEST is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with NEST. If not, see <http://www.gnu.org/licenses/>.
*
*/
/*
Alice Geminiani
alice.geminiani@polimi.it
Cerebellar MLI-PF Plasticity with an alpha function shaped kernel (based on the modulation of MLI activity during EBC
as shown in [TenBrinke et al., Cell Rep, 2015]).
Bidirectional plasticity LTP and LTD.
Based on stdp_connection_sinexp.
*/
#ifndef STDP_CONNECTION_ALPHA_H
#define STDP_CONNECTION_ALPHA_H
/* BeginDocumentation
Name:
Description:
Examples:
Parameters:
vt long - ID of volume_transmitter collecting the spikes from the pool of
dopamine releasing neurons and transmitting the spikes
to the synapse. A value of -1 indicates that no volume
transmitter has been assigned.
Common properties:
A_plus double - Amplitude of weight change for facilitation
A_minus double - Amplitude of weight change for depression
Wmin double - Minimal synaptic weight
Wmax double - Maximal synaptic weight
*/
#include "connection.h"
#include "spikecounter.h"
#include "volume_transmitter_alberto.h"
#include "numerics.h"
#include <math.h>
#include "mynames.h"
namespace mynest
{
/**
* Class containing the common properties for all synapses of type dopamine connection.
*/
class STDPAlphaCommonProperties : public nest::CommonSynapseProperties
{
public:
/**
* Default constructor.
* Sets all property values to defaults.
*/
STDPAlphaCommonProperties();
void get_status( DictionaryDatum& d ) const;
void set_status( const DictionaryDatum& d, nest::ConnectorModel& cm );
long get_vt_gid() const;
double A_plus_;
double A_minus_;
double Wmin_;
double Wmax_;
volume_transmitter_alberto* vtC_;
};
inline long
STDPAlphaCommonProperties::get_vt_gid() const
{
if ( vtC_ != 0 )
{
return vtC_->get_gid();
}
else
{
return -1;
}
}
/**
* Class representing an STDPAlphaConnection with homogeneous parameters,
* i.e. parameters are the same for all synapses.
*/
template < typename targetidentifierT >
class STDPAlphaConnection : public nest::Connection< targetidentifierT >
{
public:
nest::Node* get_node();
long get_vt_gid() const;
volume_transmitter_alberto* vt_;
std::vector<double> SpikeBuffer_;
typedef STDPAlphaCommonProperties CommonPropertiesType;
typedef nest::Connection< targetidentifierT > ConnectionBase;
STDPAlphaConnection();
STDPAlphaConnection( const STDPAlphaConnection& );
// Explicitly declare all methods inherited from the dependent base ConnectionBase.
// This avoids explicit name prefixes in all places these functions are used.
// Since ConnectionBase depends on the template parameter, they are not automatically
// found in the base class.
using ConnectionBase::get_delay;
using ConnectionBase::get_delay_steps;
using ConnectionBase::get_rport;
using ConnectionBase::get_target;
void get_status( DictionaryDatum& d ) const;
void set_status( const DictionaryDatum& d, nest::ConnectorModel& cm );
void send( nest::Event& e, nest::thread t, const STDPAlphaCommonProperties& cp );
void trigger_update_weight( nest::thread t,
const std::vector< nest::spikecounter >& dopa_spikes, double t_trig, const STDPAlphaCommonProperties& cp );
class ConnTestDummyNode : public nest::ConnTestDummyNodeBase{
public:
// Ensure proper overriding of overloaded virtual functions.
// Return values from functions are ignored.
using nest::ConnTestDummyNodeBase::handles_test_event;
nest::port
handles_test_event( nest::SpikeEvent&, nest::rport ){
return nest::invalid_port_;
}
};
/*
* This function calls check_connection on the sender and checks if the receiver
* accepts the event type and receptor type requested by the sender.
* Node::check_connection() will either confirm the receiver port by returning
* true or false if the connection should be ignored.
* We have to override the base class' implementation, since for STDP
* connections we have to call register_stdp_pl_connection on the target neuron
* to inform the Archiver to collect spikes for this connection.
* Further, the STDP dopamine synapse requires a volume transmitter to be set before
* any simulation is performed. Checking this satisfies ticket #926.
*
* \param s The source node
* \param r The target node
* \param receptor_type The ID of the requested receptor type
* \param t_lastspike_ last spike produced by presynaptic neuron (in ms)
*/
void
check_connection( nest::Node& s,
nest::Node& t,
nest::rport receptor_type,
const CommonPropertiesType& cp )
{
ConnTestDummyNode dummy_target;
ConnectionBase::check_connection_( dummy_target, s, t, receptor_type );
t.register_stdp_connection( t_lastspike_ - get_delay(), get_delay() );
}
void set_weight( double w ){
weight_ = w;
}
void set_vt_num( long n ){
vt_num_ = n;
}
private:
// update dopamine trace from last to current dopamine spike and increment index
void update_dopamine_( const std::vector< nest::spikecounter >& dopa_spikes,const STDPAlphaCommonProperties& cp );
void update_weight_(double weight_change, const STDPAlphaCommonProperties& cp );
void process_dopa_spikes_( const std::vector< nest::spikecounter >& dopa_spikes, double t0, double t1, const STDPAlphaCommonProperties& cp );
// data members of each connection
double weight_;
// dopa_spikes_idx_ refers to the dopamine spike that has just been processes
// after trigger_update_weight a pseudo dopamine spike at t_trig is stored at index 0 and
// dopa_spike_idx_ = 0
nest::index dopa_spikes_idx_;
// time of last update, which is either time of last presyn. spike or time-driven update
double t_last_update_;
long vt_num_;
double t_lastspike_;
};
//
// Implementation of class STDPAlphaConnection.
//
template < typename targetidentifierT > STDPAlphaConnection< targetidentifierT >::STDPAlphaConnection()
: ConnectionBase()
, vt_ ( 0 )
, weight_( 1.0 )
, dopa_spikes_idx_( 0 )
, t_last_update_( 0.0 )
, vt_num_ ( 0 )
, t_lastspike_( 0.0 )
{
}
template < typename targetidentifierT > STDPAlphaConnection< targetidentifierT >::STDPAlphaConnection( const STDPAlphaConnection& rhs )
: ConnectionBase( rhs )
, vt_ ( rhs.vt_ )
, weight_( rhs.weight_ )
, dopa_spikes_idx_( rhs.dopa_spikes_idx_ )
, t_last_update_( rhs.t_last_update_ )
, vt_num_ ( rhs.vt_num_ )
, t_lastspike_( rhs.t_lastspike_ )
{
}
template < typename targetidentifierT > void STDPAlphaConnection< targetidentifierT >::get_status( DictionaryDatum& d ) const{
// base class properties, different for individual synapse
ConnectionBase::get_status( d );
def< double >( d, nest::names::weight, weight_ );
def< long >( d, "vt_num", vt_num_ );
if ( vt_ != 0 )
{
def< long >( d, "modulator", vt_->get_gid() );
}
else
{
def< long >( d, "modulator", -1 );
}
}
template < typename targetidentifierT >
long
STDPAlphaConnection< targetidentifierT >::get_vt_gid( ) const
{
if ( vt_ != 0 )
{
return vt_->get_gid();
}
else
{
return -1;
}
}
template < typename targetidentifierT >
void
STDPAlphaConnection< targetidentifierT >::set_status( const DictionaryDatum& d,
nest::ConnectorModel& cm )
{
// base class properties
ConnectionBase::set_status( d, cm );
updateValue< double >( d, nest::names::weight, weight_ );
updateValue< long >( d, "vt_num", vt_num_ );
long vtgid;
if ( updateValue< long >( d, nest::names::vt, vtgid ) )
{
vt_ = dynamic_cast< volume_transmitter_alberto* >( nest::kernel().node_manager.get_node( vtgid ) );
if ( vt_ == 0 )
{
throw nest::BadProperty( "vt needs to be a Volume Transmitter" );
}
}
}
template < typename targetidentifierT >
inline void
STDPAlphaConnection< targetidentifierT >::update_dopamine_(
const std::vector< nest::spikecounter >& dopa_spikes,
const STDPAlphaCommonProperties& cp )
{
// We enter here when there is a spike of the Volume Transmitter
double minus_dt = dopa_spikes[ dopa_spikes_idx_+1].spike_time_-1;
if ( SpikeBuffer_.size() > 0 )
{
double LTP_amount = 0.0;
for ( unsigned int GR = 0; GR < SpikeBuffer_.size(); GR++ )
{
double sd= SpikeBuffer_[ GR ] - minus_dt;
if ( sd < 0 && sd >= -200 )
{
LTP_amount += cp.A_plus_ * (exp(1)/0.050) * (-sd/1000.0)*exp(sd/50.0);
}
}
update_weight_( LTP_amount, cp );
}
++dopa_spikes_idx_;
}
template < typename targetidentifierT >
inline void
STDPAlphaConnection< targetidentifierT >::update_weight_(double weight_change,
const STDPAlphaCommonProperties& cp )
{
// LTP or LTD, depending on who calls this function
weight_ = weight_+weight_change;
if ( weight_ < cp.Wmin_ )
{
weight_ = cp.Wmin_;
}
if ( weight_ > cp.Wmax_ )
{
weight_ = cp.Wmax_;
}
}
template < typename targetidentifierT >
inline void
STDPAlphaConnection< targetidentifierT >::process_dopa_spikes_(
const std::vector< nest::spikecounter >& dopa_spikes,
double t0,
double t1,
const STDPAlphaCommonProperties& cp )
{
// process dopa spikes in (t0, t1]
// propagate weight from t0 to t1
if ( ( dopa_spikes.size() > dopa_spikes_idx_ ) &&
( dopa_spikes[ dopa_spikes_idx_ ].spike_time_ <= t1 && dopa_spikes[ dopa_spikes_idx_+1 ].multiplicity_ == vt_num_ ) )
{
// A IO SPIKE IS DETECTED AT TIME T0, LTD happens with a different amplitude, it depends on the distance between IO SPIKE and PF spikes
update_dopamine_( dopa_spikes, cp );
}
}
/**
* Send an event to the receiver of this connection.
* \param e The event to send
* \param p The port under which this connection is stored in the Connector.
* \param t_lastspike Time point of last spike emitted
*/
template < typename targetidentifierT >
inline void
STDPAlphaConnection< targetidentifierT >::send( nest::Event& e,
nest::thread t,
const STDPAlphaCommonProperties& cp )
{
nest::Node* target = get_target( t );
double t_spike = e.get_stamp().get_ms();
// LTD (of a factor A_minus) due to new pre-synaptic spike
double t_spike_d = t_spike;
SpikeBuffer_.push_back( t_spike_d );
update_weight_( cp.A_minus_, cp );
while( SpikeBuffer_[ 0 ] < t_spike - 200.0 )
{
SpikeBuffer_.erase( SpikeBuffer_.begin() );
}
e.set_receiver( *target );
e.set_weight( weight_ );
e.set_delay_steps( get_delay_steps() );
e.set_rport( get_rport() );
e();
t_last_update_ = t_spike;
t_lastspike_ = t_spike;
}
template < typename targetidentifierT >
inline void
STDPAlphaConnection< targetidentifierT >::trigger_update_weight(
nest::thread t,
const std::vector< nest::spikecounter >& dopa_spikes,
const double t_trig,
const STDPAlphaCommonProperties& cp )
{
int Vid_Check = cp.get_vt_gid();
if ( Vid_Check != get_vt_gid() )
{
return;
}
std::vector< nest::spikecounter > dopa_temp = dopa_spikes;
const std::vector< nest::spikecounter > dopa_temp2 = dopa_temp;
// purely dendritic delay
double dendritic_delay = get_delay();
// get spike history in relevant range (t_last_update, t_trig] from postsyn. neuron
std::deque< nest::histentry >::iterator start;
std::deque< nest::histentry >::iterator finish;
get_target( t )->get_history(t_last_update_ - dendritic_delay, t_trig - dendritic_delay, &start, &finish );
// facilitation due to postsyn. spikes since last update
double t0 = t_last_update_;
// propagate weight, eligibility trace c, dopamine trace n and facilitation trace K_plus to time
// t_trig
// but do not increment/decrement as there are no spikes to be handled at t_trig
process_dopa_spikes_( dopa_temp2, t0, t_trig, cp );
t_last_update_ = t_trig;
dopa_spikes_idx_ = 0;
}
template < typename targetidentifierT >
inline nest::Node*
STDPAlphaConnection< targetidentifierT >::get_node()
{
if ( vt_ == 0 )
{
throw nest::BadProperty( "No neuron has been assigned as the modulator of the synapse." );
}
else
{
return vt_;
}
}
} // of namespace mynest
#endif // of #ifndef STDP_CONNECTION_ALPHA_H