Skip to content

Commit

Permalink
Develop to master (#18)
Browse files Browse the repository at this point in the history
* Fix Backpropagation test with explicit random generator seed

* remove custom seed - not working :(

* Updated links in readme
  • Loading branch information
akondas authored Aug 21, 2016
1 parent 41ac2e3 commit 6421a2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ Example scripts are available in a separate repository [php-ai/php-ml-examples](

## Contribute

- Issue Tracker: github.com/php-ai/php-ml/issues
- Source Code: github.com/php-ai/php-ml
- [Issue Tracker: github.com/php-ai/php-ml](https://github.com/php-ai/php-ml/issues)
- [Source Code: github.com/php-ai/php-ml](https://github.com/php-ai/php-ml)

You can find more about contributing in [CONTRIBUTING.md](CONTRIBUTING.md).

Expand Down
2 changes: 1 addition & 1 deletion tests/Phpml/NeuralNetwork/Training/BackpropagationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function testBackpropagationForXORLearning()
$training->train(
[[1, 0], [0, 1], [1, 1], [0, 0]],
[[1], [1], [0], [0]],
$desiredError = 0.2,
$desiredError = 0.3,
30000
);

Expand Down

0 comments on commit 6421a2b

Please sign in to comment.