1 2 3 4 5 6 7 8
pub mod config; pub mod model; pub use config::GptJConfig; pub use model::{GptJLMHeadModel, GptJModel}; #[cfg(test)] mod tests;