luna-rs 0.1.0

LUNA EEG Foundation Model — inference in Rust (Burn and/or RLX)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! RLX-backed LUNA inference (`rlx::Graph` + `rlx::Session`).
//!
//! Burn-backed types live at the crate root when `--features burn` is
//! enabled. Enable this module with `--features rlx`.

pub mod encoder;
pub mod graph;
pub mod io;
pub mod prepare;
pub mod rope_helpers;
pub mod weights;

pub use encoder::{EpochEmbedding, LunaEncoder, RunEpochOpts};
pub use io::{load_edf, load_fif, save_epochs, PreprocInfo, RlxEpoch};