Skip to main content

eegpt_rs/
lib.rs

1//! # eegpt-rs — EEGPT EEG Foundation Model inference in Rust
2//!
3//! Pure-Rust inference for the EEGPT (Pretrained Transformer for Universal
4//! and Reliable Representation of EEG Signals), 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;