We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed4ec69 commit dc7448dCopy full SHA for dc7448d
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, 1_000_000) # Was 10_000_000
+ >>> res = forward_propagation(32, 500_000) # Was 10_000_000
32
>>> res > 31 and res < 33
33
True
34
0 commit comments