Skip to content

Commit

Permalink
cost function
Browse files Browse the repository at this point in the history
  • Loading branch information
gyrdym committed Jun 9, 2020
1 parent cab704a commit f911a59
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -10,8 +10,8 @@ class Float32InverseLogitLinkFunction implements LinkFunction {

static final Float32x4 _simdOnes = Float32x4.splat(1.0);
static final Float32x4 _simdZeroes = Float32x4.zero();
static final Float32x4 _upperBound = Float32x4.splat(1000);
static final Float32x4 _lowerBound = Float32x4.splat(-1000);
static final Float32x4 _upperBound = Float32x4.splat(10);
static final Float32x4 _lowerBound = Float32x4.splat(-10);

@override
Matrix link(Matrix scores) {
Expand Down

0 comments on commit f911a59

Please sign in to comment.