Leaky ReLU By Prithwiraj samanta Leaky ReLu activation function function leaky_relu(x) { //Logic if(x >= 0) { return x; } else return 0.01*x; } Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps