mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
Develop to master (#18)
* Fix Backpropagation test with explicit random generator seed * remove custom seed - not working :( * Updated links in readme
This commit is contained in:
parent
41ac2e33ae
commit
6421a2ba41
@ -89,8 +89,8 @@ Example scripts are available in a separate repository [php-ai/php-ml-examples](
|
|||||||
|
|
||||||
## Contribute
|
## Contribute
|
||||||
|
|
||||||
- Issue Tracker: github.com/php-ai/php-ml/issues
|
- [Issue Tracker: github.com/php-ai/php-ml](https://github.com/php-ai/php-ml/issues)
|
||||||
- Source Code: github.com/php-ai/php-ml
|
- [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).
|
You can find more about contributing in [CONTRIBUTING.md](CONTRIBUTING.md).
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ class BackpropagationTest extends \PHPUnit_Framework_TestCase
|
|||||||
$training->train(
|
$training->train(
|
||||||
[[1, 0], [0, 1], [1, 1], [0, 0]],
|
[[1, 0], [0, 1], [1, 1], [0, 0]],
|
||||||
[[1], [1], [0], [0]],
|
[[1], [1], [0], [0]],
|
||||||
$desiredError = 0.2,
|
$desiredError = 0.3,
|
||||||
30000
|
30000
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user