Asude Aydin

Results 9 comments of Asude Aydin

Thanks a lot, can I also initialize different neurons with different values using this?

Thanks a lot! I really appreciate your quick responses. Another question, can we learn the threshold and membrane time constant values for LIF neurons? Or do we always need to...

Is this different than the parametric LIF model? Can both the threshold and membrane potential be learnable? Coming back to setting non-zero neuron states, if the initial states that I...

> You can set any attribute as learnable. But membrane potential v is determined by inputs and the neuron's parameters. You can not set v as learnable. Yes, sorry, I...

Sorry for jumping around topics, for the PLIF neuron, is this correct? https://github.com/fangwei123456/spikingjelly/blob/cb2f0b9fb0659b1ddfa320ea83434cfa28f23919/spikingjelly/clock_driven/neuron.py#L604 shouldn't it be: `tau = 1/self.w.sigmoid()` I guess this `extra_repr()` function is just for accessing the value...

Oh, you mean like this? ``` class ParametricLIFNode(BaseNode): def __init__(self, init_tau: float = 2.0, v_threshold: float = 1., v_reset: float = 0., surrogate_function: Callable = surrogate.Sigmoid(), detach_reset: bool = False,...

Thank you, what you proposed worked. Additionally, are sigma-delta neurons supported in spiking jelly?

> I guess that you want `v_reset=0` and `v_init` is another user-defined value. > > To implement this, you can change the charge function: > > ```python > class CustomVinitLIFNode(neuron.LIFNode):...

Yes, as far as I can tell the installation process was successful