testSigmoidClipped function

  1. @visibleForTesting
double testSigmoidClipped(
  1. double x, {
  2. double limit = kRawScoreLimit,
})

Test-only: exposes sigmoidClipped for unit tests.

Implementation

@visibleForTesting
double testSigmoidClipped(double x, {double limit = kRawScoreLimit}) =>
    sigmoidClipped(x, limit: limit);