From 25cab658d19039fef9ca60e00f46fdf8ed1e344f Mon Sep 17 00:00:00 2001 From: Piyush Poddar Date: Thu, 5 Oct 2023 00:50:49 +0530 Subject: [PATCH 1/3] Moved file relu.py from maths/ to neural_network/activation_functions --- DIRECTORY.md | 2 +- {maths => neural_network/activation_functions}/relu.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {maths => neural_network/activation_functions}/relu.py (100%) diff --git a/DIRECTORY.md b/DIRECTORY.md index 4f4cc423d678..90685495a06c 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -639,7 +639,6 @@ * [Quadratic Equations Complex Numbers](maths/quadratic_equations_complex_numbers.py) * [Radians](maths/radians.py) * [Radix2 Fft](maths/radix2_fft.py) - * [Relu](maths/relu.py) * [Remove Digit](maths/remove_digit.py) * [Runge Kutta](maths/runge_kutta.py) * [Segmented Sieve](maths/segmented_sieve.py) @@ -710,6 +709,7 @@ * [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py) * [Leaky Rectified Linear Unit](neural_network/activation_functions/leaky_rectified_linear_unit.py) * [Scaled Exponential Linear Unit](neural_network/activation_functions/scaled_exponential_linear_unit.py) + * [Relu](neural_network/activation_functions/relu.py) * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py) * [Convolution Neural Network](neural_network/convolution_neural_network.py) * [Perceptron](neural_network/perceptron.py) diff --git a/maths/relu.py b/neural_network/activation_functions/relu.py similarity index 100% rename from maths/relu.py rename to neural_network/activation_functions/relu.py From 210c388ecd9e3a98554bafd50f7fd87dd0e209eb Mon Sep 17 00:00:00 2001 From: Piyush Poddar Date: Thu, 5 Oct 2023 01:19:49 +0530 Subject: [PATCH 2/3] Renamed relu.py to rectified_linear_unit.py --- .../activation_functions/{relu.py => rectified_linear_unit.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename neural_network/activation_functions/{relu.py => rectified_linear_unit.py} (100%) diff --git a/neural_network/activation_functions/relu.py b/neural_network/activation_functions/rectified_linear_unit.py similarity index 100% rename from neural_network/activation_functions/relu.py rename to neural_network/activation_functions/rectified_linear_unit.py From 8474a3a3614adabf8c29c0ecebbfb05b7ba8bf86 Mon Sep 17 00:00:00 2001 From: Piyush Poddar Date: Thu, 5 Oct 2023 01:29:54 +0530 Subject: [PATCH 3/3] Renamed relu.py to rectified_linear_unit.py in DIRECTORY.md --- DIRECTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DIRECTORY.md b/DIRECTORY.md index 90685495a06c..696a059bb4c8 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -709,7 +709,7 @@ * [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py) * [Leaky Rectified Linear Unit](neural_network/activation_functions/leaky_rectified_linear_unit.py) * [Scaled Exponential Linear Unit](neural_network/activation_functions/scaled_exponential_linear_unit.py) - * [Relu](neural_network/activation_functions/relu.py) + * [Rectified Linear Unit](neural_network/activation_functions/rectified_linear_unit.py) * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py) * [Convolution Neural Network](neural_network/convolution_neural_network.py) * [Perceptron](neural_network/perceptron.py)