Skip to content

Commit 636718c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dbbedef commit 636718c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

neural_network/artificial_neural_network.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def sigmoid_derivative(self, sigmoid_output: np.ndarray) -> np.ndarray:
5858
Derivative of the sigmoid function.
5959
6060
Args:
61-
sigmoid_output (ndarray): Output after applying
61+
sigmoid_output (ndarray): Output after applying
6262
the sigmoid function.
6363
6464
Returns:
@@ -73,7 +73,6 @@ def sigmoid_derivative(self, sigmoid_output: np.ndarray) -> np.ndarray:
7373
return sigmoid_output * (1 - sigmoid_output)
7474

7575
def feedforward(self, inputs: np.ndarray) -> np.ndarray:
76-
7776
"""
7877
Perform forward propagation through the network.
7978

0 commit comments

Comments
 (0)