Replies: 1 comment 1 reply
-
The inputs don't have to be spikes. The idea is that the network will learn the optimal representation to convert non-spiking data into a format compatible with spiking. Tutorial 2 shows how non-spiking data is injected as a time-varying input current. The same logic applies. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
train_loader = DataLoader(mnist_train, batch_size=batch_size, shuffle=True, drop_last=True)
test_loader = DataLoader(mnist_test, batch_size=batch_size, shuffle=True, drop_last=True)
It is using just this as input and there are no spikes
What I Did
Beta Was this translation helpful? Give feedback.
All reactions