From ed4ec69c7684018ffd25eb5c9235e6dc56fb46e4 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 27 Oct 2023 13:16:22 +0200 Subject: [PATCH] forward_propagation(32, 1_000_000) # Was 10_000_000 --- neural_network/simple_neural_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neural_network/simple_neural_network.py b/neural_network/simple_neural_network.py index b35aae396..0a0afcb9f 100644 --- a/neural_network/simple_neural_network.py +++ b/neural_network/simple_neural_network.py @@ -28,7 +28,7 @@ INITIAL_VALUE = 0.02 def forward_propagation(expected: int, number_propagations: int) -> float: """Return the value found after the forward propagation training. - >>> res = forward_propagation(32, 100_000) # Was 10_000_000 + >>> res = forward_propagation(32, 1_000_000) # Was 10_000_000 >>> res > 31 and res < 33 True