Replies: 1 comment 8 replies
-
The pixels in images in the MNIST examples are converted to spike train in Hz. All you need is the integer number to do the same, no image is necessary. You can use the function in the encoding library to create the signal base on an integer input and the function create the spike train in Hz, for example, see Poisson doc |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am using BindsNet for my research project to implement and train an SNN. In order to get familiar with BindsNet I am attempting to solve the XOR problem by creating a SNN, inputting the training data and store the network parameters.
The XOR problem we are working on is for a 2 input gate. Therefore the data that we wish to use for training the network are the following combinations:
(00) (01) (10) (11)
We want to use rate coding to convert a logic level 0 and 1 to a fixed frequency e.g.
0 -> 10Hz spike train
1 -> 20Hz spike train
How do we feed the data into the SNN that we have created? Are there any examples showing how to do this with non-image based data?
Beta Was this translation helpful? Give feedback.
All reactions