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