Sketch the tensor initialization module. (#134)

This commit is contained in:
Laurent Mazare
2023-07-11 07:41:46 +01:00
committed by GitHub
parent 0e9d3afd77
commit b31a3bbdcb
2 changed files with 116 additions and 6 deletions

View File

@ -1,11 +1,12 @@
// For now this crate shares its error type with candle-core. We may introduce some separate
// error type if needed or add some specialized cases on the candle-core side.
mod activation;
mod conv;
mod embedding;
mod layer_norm;
mod linear;
mod var_builder;
pub mod activation;
pub mod conv;
pub mod embedding;
pub mod init;
pub mod layer_norm;
pub mod linear;
pub mod var_builder;
pub use activation::Activation;
pub use conv::{Conv1d, Conv1dConfig};