brain2qwerty 0.0.1

Brain2Qwerty V1/V2 MEG neural decoding inference in Rust (parity-tested vs Python)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Brain2Qwerty V1 — keystroke-aligned MEG decoding (Conv + sentence transformer).

pub mod bahdanau;
pub mod config;
pub mod decode;
pub mod encoder;
pub mod model;
pub mod pipeline;
pub mod transformer;

pub use config::V1Config;
pub use decode::{char_from_index, greedy_decode, NUM_CLASSES};
pub use model::Brain2QwertyV1;
pub use pipeline::{V1Input, V1Output, V1Pipeline};