Comparing version 0.6.1 to 0.7.0
{ | ||
"name": "egreedy", | ||
"description": "An epsilon-greedy multi-armed bandit algorithm", | ||
"version": "0.6.1", | ||
"version": "0.7.0", | ||
"license": "ISC", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -211,4 +211,4 @@ egreedy | ||
Currently, this implementation relies on the [native Math.random()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random) which uses a seeded "random" number generator. In addition, the underlying calculations often encounter extended floating point numbers. Arm selection is therefore subject to JavaScript's floating point precision limitations. For general information about floating point issues see the [floating point guide](http://floating-point-gui.de). | ||
This implementation relies on the [native Math.random()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random) which uses a seeded "random" number generator. In addition, the underlying calculations often encounter extended floating point numbers. Arm selection is therefore subject to JavaScript's floating point precision limitations. For general information about floating point issues see the [floating point guide](http://floating-point-gui.de). | ||
While these factors generally do not impede common application, I would consider the implementation suspect in an academic setting. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21384