Replies: 1 comment
-
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.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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