Skip to content

Commit

Permalink
Increase iterations number in Backpropagation test (sometimes it fails)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas committed Nov 20, 2016
1 parent cbdc049 commit 12d0add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Phpml/NeuralNetwork/Training/BackpropagationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function testBackpropagationForXORLearning()
[[1, 0], [0, 1], [1, 1], [0, 0]],
[[1], [1], [0], [0]],
$desiredError = 0.3,
30000
40000
);

$this->assertEquals(0, $network->setInput([1, 1])->getOutput()[0], '', $desiredError);
Expand Down

0 comments on commit 12d0add

Please sign in to comment.