About using NMNIST dataset, num_steps=300, dt=1000 #57
-
Good day! I wanted to know what does mean num_steps = 300. Does it mean that to use only 300 events? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @asselkembay! For future reference, please use the Discussions forum for questions so that the Issues can be used for tracking bugs and adding features :)
In a recurrent neural network, the number of steps corresponds to the length of the input sequence. You can change the sequence length of the input using The NMNIST dataset was filmed using a DVS Camera which generates a variable number of events at any time step. As you increase I recommend opening up this notebook, playing with the values, and visualizing them to see how they are related: |
Beta Was this translation helpful? Give feedback.
Hi @asselkembay!
For future reference, please use the Discussions forum for questions so that the Issues can be used for tracking bugs and adding features :)
num_steps
refers to the number of time steps being simulated, anddt
is the integration window of the events in microseconds.In a recurrent neural network, the number of steps corresponds to the length of the input sequence. You can change the sequence length of the input using
num_steps
.The NMNIST dataset was filmed using a DVS Camera which generates a variable number of events at any time step.
If
dt=1
, then your input would catch very few events at each time step.If
dt=1000
, then you are passing in many more (1ms worth) events …