//! Module defining the core `Module` trait for all neural network layers.
use crateTensor;
/// Trait defining the common interface for all layers/modules.
///
/// In the graph-based architecture, `Module` is any component that can
/// add a specific pattern of operations and parameters to the graph.