Skip to main content

labram_rs/
lib.rs

1//! # labram-rs — LaBraM EEG Foundation Model inference in Rust
2//!
3//! Pure-Rust inference for the LaBraM (Large Brain Model) EEG foundation model,
4//! built on [Burn 0.20](https://burn.dev).
5
6pub mod config;
7pub mod model;
8pub mod weights;
9
10pub use config::ModelConfig;
11pub use weights::WeightMap;