From dc7448d59f10a15cfc84951c6abc27c0a66ef813 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 27 Oct 2023 14:11:29 +0200 Subject: [PATCH] forward_propagation(32, 500_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 0a0afcb9f..892d4dbfd 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, 1_000_000) # Was 10_000_000 + >>> res = forward_propagation(32, 500_000) # Was 10_000_000 >>> res > 31 and res < 33 True