neuburn 0.1.0

Spiking neural network framework on top of Burn — Rust-native alternative to snntorch
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! neuBurn — Spiking neural network framework on top of Burn.
//! Rust-native alternative to snntorch.

pub mod bntt;
pub mod encoding;
pub mod event_driven;
pub mod functional;
pub mod kan;
pub mod layers;
pub mod neuron;
pub mod prelude;
pub mod slstm;
pub mod state;
pub mod surrogate;