We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7448d commit 8668f57Copy full SHA for 8668f57
neural_network/simple_neural_network.py
@@ -28,7 +28,7 @@ def sigmoid_function(value: float, deriv: bool = False) -> float:
28
def forward_propagation(expected: int, number_propagations: int) -> float:
29
"""Return the value found after the forward propagation training.
30
31
- >>> res = forward_propagation(32, 500_000) # Was 10_000_000
+ >>> res = forward_propagation(32, 450_000) # Was 10_000_000
32
>>> res > 31 and res < 33
33
True
34
0 commit comments