Skip to content

Commit

Permalink
Merge pull request #159 from groud/fix_zscore_epsilon
Browse files Browse the repository at this point in the history
Fixes zscore epsilon not initialized
  • Loading branch information
jonhare committed Jan 17, 2019
2 parents b584a7b + 294e9ec commit 908cfda
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -59,6 +59,7 @@ public ZScore() {
* divided by sqrt(var + eps).
*/
public ZScore(double eps) {
this.eps = eps;
}

@Override
Expand Down

0 comments on commit 908cfda

Please sign in to comment.