quiet-crab 0.1.0

Run Whisper Models in Rust Natively
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Model architecture modules

pub mod config;
pub mod feed_forward;
pub mod attention;
pub mod positional;
pub mod encoder;
pub mod decoder;
pub mod whisper;

pub use config::{ModelSize, WhisperConfig};
//pub use whisper::WhisperModel;