//! The module that contains all activations functions currently implemented for Intricate,
//! which as of v0.3.0, are:
//!
//! - ReLU (Rectified Linear Unit)
//! - Sigmoid
//! - TanH (Hyperbolic Tangent)
//! - SoftMax
pub use ReLU;
pub use Sigmoid;
pub use SoftMax;
pub use TanH;
use crate;
pub