1 2 3 4 5 6
//! Sparse neural network optimizers pub mod sgd; // Re-export commonly used optimizer types pub use sgd::{SparseSGD, SparseSGDBuilder};