fangwei123456 / spikingjelly

SpikingJelly is an open-source deep learning framework for Spiking Neural Network (SNN) based on PyTorch.
https://spikingjelly.readthedocs.io
Other
1.24k stars 235 forks source link

单层全连接snn相关 #499

Open Linxiang-Wang opened 4 months ago

Linxiang-Wang commented 4 months ago

Hello, I noticed that in the tutorial, a single-layer fully connected SNN is used for recognizing MNIST instead of N-MNIST. Why is that?At the same time, I also tried using a single-layer fully connected SNN for DVS Gesture recognition, but the accuracy only reached 72%. Is this a normal phenomenon?

Linxiang-Wang commented 4 months ago

I changed the input dataset of the single-layer fully connected SNN to N-MNIST, and it can still undergo training. However, is the Poisson encoding redundant in this case?

fangwei123456 commented 4 months ago

for recognizing MNIST instead of N-MNIST. Why is that?

Because users are familiar with MNSIT. To use N-MNIST, users have to learn how to process neuromorphic datasets first.

but the accuracy only reached 72%. Is this a normal phenomenon?

It is as expected.

is the Poisson encoding redundant in this case?

No, because some new users may not agree to input data to SNNs directly.

Linxiang-Wang commented 4 months ago

I see. So, what you mean is that the example of the single-layer fully connected SNN recognizing MNIST with MNIST + Poisson encoding actually demonstrates a process for handling static datasets?

fangwei123456 commented 4 months ago

Yes. In the next tutorial, the encoder is removed and the image is sent to the SNN directly.