Move the var-builder in a central place. (#130)

This commit is contained in:
Laurent Mazare
2023-07-10 20:49:50 +01:00
committed by GitHub
parent 2be09dbb1d
commit 1aa7fbbc33
8 changed files with 74 additions and 242 deletions

View File

@ -5,9 +5,11 @@ mod conv;
mod embedding;
mod layer_norm;
mod linear;
mod var_builder;
pub use activation::Activation;
pub use conv::{Conv1d, Conv1dConfig};
pub use embedding::Embedding;
pub use layer_norm::LayerNorm;
pub use linear::Linear;
pub use var_builder::VarBuilder;