Skip to content

Commit 8668f57

Browse files
authored
Update simple_neural_network.py
1 parent dc7448d commit 8668f57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: neural_network/simple_neural_network.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def sigmoid_function(value: float, deriv: bool = False) -> float:
2828
def forward_propagation(expected: int, number_propagations: int) -> float:
2929
"""Return the value found after the forward propagation training.
3030
31-
>>> res = forward_propagation(32, 500_000) # Was 10_000_000
31+
>>> res = forward_propagation(32, 450_000) # Was 10_000_000
3232
>>> res > 31 and res < 33
3333
True
3434

0 commit comments

Comments
 (0)