Replies: 1 comment 1 reply
-
When you create your scheduler, you can pass a list of crossover parameters like this scheduler = bootstrap.routine.Scheduler(num_sample_iter=10, sample_period=10, crossover_epochs=[10, 20, 30, 40, 50]) This means
I do suspect your neurons are saturating (high firing rate) which is the cause of the accuracy difference. It would be useful to look at the neuron firing rate or even the input range. Its good to normalize the inputs between -1 and 1 or 0 and 1 as needed. |
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
-
Hi! I've been attempting to train a model on a custom dataset with 10 classes. I've defined the model using bootstrap and have tried playing around with the training parameters to see if I can improve the performance of the SNN but have been unsuccessful. Looking at the accuracy.png plot generated after training and validation, the ANN has testing accuracy in the mid 90's but the SNN is only in low to mid 60s. I read about the hybridization training possibly improving this gap but it isn't shown in the mnist.py tutorial in bootstrap. Is there a way I can get more info on how to utilize this feature? Thank you so much!
Beta Was this translation helpful? Give feedback.
All reactions