From 8668f5792dc673f085966f6f90c9c896081f22e9 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 27 Oct 2023 23:19:24 +0200 Subject: [PATCH] Update simple_neural_network.py --- 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 892d4dbfd..8751a3890 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, 500_000) # Was 10_000_000 + >>> res = forward_propagation(32, 450_000) # Was 10_000_000 >>> res > 31 and res < 33 True