LinearLateral¶
- class LinearLateral(shape: tuple[int, ...] | int, step_time: float, *, synapse: SynapseConstructor, bias: bool = False, delay: float | None = None, batch_size: int = 1, weight_init: OneToOne | None = None, bias_init: OneToOne | None = None, delay_init: OneToOne | None = None)[source]¶
Bases:
WeightBiasDelayMixin,ConnectionLinear all-to-“all but one” connection.
\[y = x \left(W^\intercal \odot (1 - I_N\right)) + b\]- Parameters:
shape (tuple[int, ...] | int) – expected shape of input and output tensors, excluding batch dimension.
step_time (float) – length of a simulation time step, in \(\text{ms}\).
synapse (SynapseConstructor) – partial constructor for inner
Synapse.bias (bool, optional) – if the connection should support learnable additive bias. Defaults to
False.delay (float | None, optional) – maximum supported delay length, in \(\text{ms}\), excludes delays when
None. Defaults toNone.batch_size (int, optional) – size of input batches for simulation. Defaults to
1.weight_init (OneToOne[torch.Tensor] | None, optional) – initializer for weights. Defaults to
None.bias_init (OneToOne[torch.Tensor] | None, optional) – initializer for biases. Defaults to
None.delay_init (OneToOne[torch.Tensor] | None, optional) – initializer for delays. Defaults to
None.
Shape
LinearDense.weight,LinearDense.delay:\(\prod(N_0, \ldots) \times \prod(N_0, \ldots)\)
LinearDense.bias:\((N_0 \cdot \cdots)\)
Note
If
weight_initorbias_initare None,weightandbiasare, respectively, initialized as uniform random values over the interval \([0, 1)\) usingtorch.rand().If
delay_initis None,delayis initialized as zeros usingtorch.rand().Note
Weights and delays are stored internally like in
LinearDense, but on assignment byweightand creation are masked by a tensor \(1 - I_N\), where \(N = (N_0 \cdot \cdots)\).- property delay: Tensor | None¶
Learnable delays of the connection.
- Parameters:
value (torch.Tensor) – new delays.
- Returns:
current delays, if the connection has any.
- Return type:
torch.Tensor | None
Note
Setter masks delays before assignment.
- forward(*inputs: Tensor, **kwargs) Tensor[source]¶
Generates connection output from inputs, after passing through the synapse.
Outputs are determined as the learned linear transformation applied to synaptic currents, after new input is applied to the synapse, then reshaped to match
batched_outshape.- Parameters:
*inputs (torch.Tensor) – inputs to the connection.
- Returns:
outputs from the connection.
- Return type:
Shape
*inputs:\(B \times N_0 \times \cdots\)
return:\(B \times N_0 \times \cdots\)
- Where:
\(B\) is the batch size.
\(N_0, \ldots\) are the unbatched input/output dimensions.
Note
*inputsare reshaped usinglike_synaptic()then passed toforward()ofsynapse. Keyword arguments are also passed through.
- property inshape: tuple[int, ...]¶
Shape of inputs to the connection, excluding the batch dimension.
- like_bias(data: Tensor) Tensor[source]¶
Reshapes data like reduced postsynaptic receptive spikes to connection bias.
- Parameters:
data (torch.Tensor) – data shaped like reduced postsynaptic receptive spikes.
- Returns:
reshaped data.
- Return type:
Shape
data:\(N \times 1\)
return:\(N\)
- Where:
\(N\) is the number of elements across input/output dimensions.
- like_input(data: Tensor) Tensor[source]¶
Reshapes data like synapse input to connection input.
- Parameters:
data (torch.Tensor) – data shaped like synapse input.
- Returns:
reshaped data.
- Return type:
Shape
data:\(B \times N\)
return:\(B \times N_0 \times \cdots\)
- Where:
\(B\) is the batch size.
\(N\) is the number of elements across input/output dimensions.
\(N_0, \ldots\) are the unbatched input/output dimensions.
- like_synaptic(data: Tensor) Tensor[source]¶
Reshapes data like connection input to synapse input.
- Parameters:
data (torch.Tensor) – data shaped like connection input.
- Returns:
reshaped data.
- Return type:
Shape
data:\(B \times N_0 \times \cdots\)
return:\(B \times N\)
- Where:
\(B\) is the batch size.
\(N_0, \ldots\) are the unbatched input/output dimensions.
\(N\) is the number of elements across input/output dimensions.
- property outshape: tuple[int, ...]¶
Shape of outputs from the connection, excluding the batch dimension.
- postsyn_receptive(data: Tensor) Tensor[source]¶
Reshapes data like connection output for pre-post learning methods.
- Parameters:
data (torch.Tensor) – data shaped like output of
forward().- Returns:
reshaped data.
- Return type:
Shape
data:\(B \times N_0 \times \cdots\)
return:\(B \times N \times 1 \times 1\)
- Where:
\(B\) is the batch size.
\(N_0, \ldots\) are the unbatched input/output dimensions.
\(N\) is the number of elements across input/output dimensions.
- presyn_receptive(data: Tensor) Tensor[source]¶
Reshapes data like the synapse state for pre-post learning methods.
- Parameters:
data (torch.Tensor) – data shaped like output of
like_synaptic().- Returns:
reshaped data.
- Return type:
Shape
data:\(B \times N \times [N]\)
return:\(B \times N \times N \times 1\)
or
\(B \times 1 \times N \times 1\)
- Where:
\(B\) is the batch size.
\(N\) is the number of elements across input/output dimensions.
- property selector: Tensor | None¶
Learned delays as a selector for synaptic currents and delays.
- Returns:
delay selector if the connection has learnable delays.
- Return type:
torch.Tensor | None
Shape
\(B \times N \times N\)
- Where:
\(B\) is the batch size.
\(N\) is the number of elements across input/output dimensions.
- property weight: Tensor¶
Learnable connection weights.
- Parameters:
value (torch.Tensor) – new weights.
- Returns:
present weights.
- Return type:
Note
Setter masks weights before assignment.