Skip to content

Instantly share code, notes, and snippets.

@hietalajulius
Created July 28, 2023 12:34
Show Gist options
  • Save hietalajulius/d7156ca08c955291c87fd1d27b822fd8 to your computer and use it in GitHub Desktop.
Save hietalajulius/d7156ca08c955291c87fd1d27b822fd8 to your computer and use it in GitHub Desktop.
/// ReLU represents the Rectified Linear Unit activation function.
pub struct ReLU {
pub dy_dx: Option<Array2<f64>>,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment