Open hemangandhi opened 3 years ago
Open question: is there a value in using const generics for the number of neurons in a layer and number of layers in the overall SNN?
While this might allow the types to be more expressive and interesting, it's possible that there's no real benefit to this data and just makes usage more cumbersome.
Providing both options (so a Vec
-based dynamic SNN and a compile-time fixed-size SNN) is also possible, but this has even more dubious value.
See here: https://github.com/hemangandhi/brian-rs#snns
None of this system is implemented. Please design and implement.