eegpt-rs 0.0.1

EEGPT EEG Foundation Model — inference in Rust with Burn ML
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # eegpt-rs — EEGPT EEG Foundation Model inference in Rust
//!
//! Pure-Rust inference for the EEGPT (Pretrained Transformer for Universal
//! and Reliable Representation of EEG Signals), built on [Burn 0.20](https://burn.dev).

pub mod config;
pub mod model;
pub mod weights;

pub use config::ModelConfig;
pub use weights::WeightMap;