/external/tensorflow/tensorflow/python/layers/ |
normalization.py | 64 epsilon: Small float added to variance to avoid dividing by zero. 125 epsilon=1e-3, 152 self.epsilon = epsilon 386 epsilon=self.epsilon, 396 epsilon=self.epsilon, 434 stddev = math_ops.sqrt(variance + self.epsilon) 490 # Make sqrt(moving_variance + epsilon) = new_stddev [all...] |
/external/tensorflow/tensorflow/tools/api/golden/ |
tensorflow.train.-adadelta-optimizer.pbtxt | 22 argspec: "args=[\'self\', \'learning_rate\', \'rho\', \'epsilon\', \'use_locking\', \'name\'], varargs=None, keywords=None, defaults=[\'0.001\', \'0.95\', \'1e-08\', \'False\', \'Adadelta\'], "
|
tensorflow.train.-adam-optimizer.pbtxt | 22 argspec: "args=[\'self\', \'learning_rate\', \'beta1\', \'beta2\', \'epsilon\', \'use_locking\', \'name\'], varargs=None, keywords=None, defaults=[\'0.001\', \'0.9\', \'0.999\', \'1e-08\', \'False\', \'Adam\'], "
|
tensorflow.train.-r-m-s-prop-optimizer.pbtxt | 22 argspec: "args=[\'self\', \'learning_rate\', \'decay\', \'momentum\', \'epsilon\', \'use_locking\', \'centered\', \'name\'], varargs=None, keywords=None, defaults=[\'0.9\', \'0.0\', \'1e-10\', \'False\', \'False\', \'RMSProp\'], "
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/ |
Fraction.java | 112 * @param epsilon maximum error allowed. The resulting fraction is within 113 * <code>epsilon</code> of <code>value</code>, in absolute terms. 118 public Fraction(double value, double epsilon, int maxIterations) 121 this(value, epsilon, Integer.MAX_VALUE, maxIterations); 150 * - a valid epsilon value and the maxDenominator set to Integer.MAX_VALUE 153 * - a valid maxDenominator value and the epsilon value set to zero 154 * (that way epsilon only has effect if there is an exact match before 168 * @param epsilon maximum error allowed. The resulting fraction is within 169 * <code>epsilon</code> of <code>value</code>, in absolute terms. 175 private Fraction(double value, double epsilon, int maxDenominator, int maxIterations [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/ |
SimplexTableau.java | 96 private final double epsilon; field in class:SimplexTableau 105 * @param epsilon amount of error to accept in floating point comparisons 110 final double epsilon) { 114 this.epsilon = epsilon; 288 if (MathUtils.equals(getEntry(i, col), 1.0, epsilon) && (row == null)) { 290 } else if (!MathUtils.equals(getEntry(i, col), 0.0, epsilon)) { 311 if (MathUtils.compareTo(tableau.getEntry(0, i), 0, epsilon) > 0) { 356 if (MathUtils.compareTo(tableau.getEntry(0, i), 0, epsilon) < 0) { 547 (epsilon == rhs.epsilon) & [all...] |
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
esextcTessellationShaderIsolines.cpp | 130 const float epsilon = 1e-5f; local 158 DE_ASSERT(de::abs(irrelevant_tess_level1 - irrelevant_tess_level2) > epsilon); 180 if (de::abs(vertex_data_1[0] - vertex_data_2[0]) > epsilon || 181 de::abs(vertex_data_1[1] - vertex_data_2[1]) > epsilon || 182 de::abs(vertex_data_1[2] - vertex_data_2[2]) > epsilon) 238 const float epsilon = 1e-5f; local 275 if (de::abs(found_vertex1_x - vertex1_x) < epsilon && de::abs(found_vertex2_x - vertex2_x) < epsilon) 330 const float epsilon = 1e-5f; local 336 if (de::abs(vertex[1] - 1.0f) < epsilon) 412 const float epsilon = 1e-5f; local [all...] |
/external/eigen/lapack/ |
dlamch.f | 89 INTRINSIC DIGITS, EPSILON, HUGE, MAXEXPONENT, 100 EPS = EPSILON(ZERO) * 0.5 102 EPS = EPSILON(ZERO)
|
slamch.f | 93 INTRINSIC DIGITS, EPSILON, HUGE, MAXEXPONENT, 104 EPS = EPSILON(ZERO) * 0.5 106 EPS = EPSILON(ZERO)
|
/external/fonttools/Lib/fontTools/pens/ |
pointInsidePen.py | 15 EPSILON = 1e-10 16 ONE_PLUS_EPSILON = 1 + EPSILON 17 ZERO_MINUS_EPSILON = 0 - EPSILON
|
/external/skia/tests/ |
PathOpsAngleTest.cpp | 54 int epsilon = SkTAbs(p1Bits - p2Bits); local 55 if (maxEpsilon < epsilon) { 57 " epsilon=%d\n", 58 line[1].fX, line[1].fY, t, test.fX, test.fY, epsilon); 59 maxEpsilon = epsilon; 109 int epsilon = SkTAbs(p1Bits - p2Bits); local 110 if (maxEpsilon < epsilon) { 112 " pt={%1.7g, %1.7g} epsilon=%d\n", 113 line[1].fX, line[1].fY, t, t2, t3, moveT, last.fX, last.fY, epsilon); 114 maxEpsilon = epsilon; [all...] |
/external/skqp/tests/ |
PathOpsAngleTest.cpp | 54 int epsilon = SkTAbs(p1Bits - p2Bits); local 55 if (maxEpsilon < epsilon) { 57 " epsilon=%d\n", 58 line[1].fX, line[1].fY, t, test.fX, test.fY, epsilon); 59 maxEpsilon = epsilon; 109 int epsilon = SkTAbs(p1Bits - p2Bits); local 110 if (maxEpsilon < epsilon) { 112 " pt={%1.7g, %1.7g} epsilon=%d\n", 113 line[1].fX, line[1].fY, t, t2, t3, moveT, last.fX, last.fY, epsilon); 114 maxEpsilon = epsilon; [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
cudnn_batchnorm_thunk.h | 53 float epsilon, int64 feature_index, 81 const BufferAllocation::Slice& offset, float epsilon, int64 feature_index, 114 float epsilon, int64 feature_index,
|
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/batch/ |
ordinal_split_handler.py | 92 epsilon, 109 epsilon: A float, the error bound for quantile computation. 135 epsilon=epsilon, 150 epsilon, 168 epsilon: A float, the error bound for quantile computation. 183 epsilon=epsilon, 290 epsilon, 308 epsilon: A float, the error bound for quantile computation [all...] |
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
normalization.py | 43 epsilon=1e-6, 69 epsilon: Small float added to variance to avoid dividing by zero. 157 inputs, mean, variance, beta, gamma, epsilon, name='instancenorm')
|
/external/tensorflow/tensorflow/core/framework/ |
bfloat16_test.cc | 108 TEST(Bfloat16Test, Epsilon) { 109 EXPECT_LT(1.0f, static_cast<float>(bfloat16::epsilon() + bfloat16(1.0f))); 110 EXPECT_EQ(1.0f, static_cast<float>((bfloat16::epsilon() / bfloat16(2.0f)) +
|
/external/tensorflow/tensorflow/core/kernels/ |
fused_batch_norm_op_test.cc | 39 .Attr("epsilon", 0.001) 73 .Attr("epsilon", 0.001) 101 .Attr("epsilon", 0.001)
|
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
utils_neon.cc | 63 SCHECK(NearlyEqual(mean_neon, mean_cpu, EPSILON * num_vals), 101 SCHECK(NearlyEqual(std_dev_neon, std_dev_cpu, EPSILON * num_vals), 141 EPSILON * num_vals),
|
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/ |
TensorTest.java | 38 private static final double EPSILON = 1e-7; 79 assertArrayEquals(doubles, t.copyTo(actual), EPSILON); 106 assertArrayEquals(doubles, t.copyTo(actual), EPSILON); 122 assertArrayEquals(doubles, t.copyTo(actual), EPSILON); 186 assertEquals(floats[0], bbuf.asFloatBuffer().get(0), EPSILON); 191 assertEquals(doubles[0], bbuf.asDoubleBuffer().get(0), EPSILON); 218 assertEquals(doubles[0], buf.get(0), EPSILON); 226 assertEquals(floats[0], buf.get(0), EPSILON); 232 assertEquals(doubles[0], buf.get(0), EPSILON); 260 assertArrayEquals(doubles, actual, EPSILON); [all...] |
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/core/ |
ConstantTest.java | 39 private static final float EPSILON = 1e-7f; 68 assertArrayEquals(floats, result.copyTo(actual), EPSILON); 83 assertArrayEquals(doubles, result.copyTo(actual), EPSILON);
|
/frameworks/support/wear/src/main/java/androidx/wear/widget/ |
CurvingLayoutCallback.java | 33 private static final float EPSILON = 0.001f; 83 Math.abs(mPathPoints[1] - mCurveBottom) < EPSILON 86 Math.abs(mPathPoints[1] - mCurveTop) < EPSILON
|
/packages/apps/Camera2/src/com/android/camera/ui/motion/ |
DampedSpring.java | 27 public static final float EPSILON = 0.01f; 132 boolean hasVelocity = Math.abs(mVelocity) >= EPSILON; 133 boolean atTarget = Math.abs(mTarget - mValue) < EPSILON;
|
/external/libcxx/include/ |
limits | 36 static constexpr T epsilon() noexcept; 159 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type();} 219 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type(0);} 272 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type(0);} 318 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __FLT_EPSILON__;} 364 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __DBL_EPSILON__;} 410 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __LDBL_EPSILON__;} 460 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __base::epsilon();} 553 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __base::epsilon(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/ |
limits | 36 static constexpr T epsilon() noexcept; 158 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type();} 218 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type(0);} 271 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type(0);} 317 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __FLT_EPSILON__;} 363 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __DBL_EPSILON__;} 409 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __LDBL_EPSILON__;} 459 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __base::epsilon();} 552 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __base::epsilon(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/ |
limits | 36 static constexpr T epsilon() noexcept; 159 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type();} 219 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type(0);} 272 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return type(0);} 318 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __FLT_EPSILON__;} 364 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __DBL_EPSILON__;} 410 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __LDBL_EPSILON__;} 460 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __base::epsilon();} 553 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type epsilon() _NOEXCEPT {return __base::epsilon(); [all...] |