Alireza Khodamoradi

Results 3 issues of Alireza Khodamoradi

The first convolution at here: https://github.com/aa-samad/conv_snn/blob/master/CIFAR10-DVS/network.py#L158 is on input spikes. Figure 3 in the paper shows that it should be on the synapse output: https://arxiv.org/pdf/2003.12346.pdf

documentation

I am trying to understand how c1_spike and c1_mem affect the output. Between https://github.com/aa-samad/conv_snn/blob/master/CIFAR10-DVS/network.py#L163 and https://github.com/aa-samad/conv_snn/blob/master/CIFAR10-DVS/network.py#L76 It seems that they do get updated by the input but do not affect...

bug

The environment is a computing cluster: Slurm 20.11.3 MI50 GPUs PyTorch 1.12.0 ROCM 5.2.0 Code (test.py): **************************************** import torch net = torch.nn.Conv2d(2, 28, 3).cuda() inp = torch.randn(20, 2, 50, 50).cuda()...

question