Home
last modified time | relevance | path

Searched refs:_EPSILON (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/keras/
Dbackend_config.py26 _EPSILON = 1e-7 variable
44 return _EPSILON
56 global _EPSILON
57 _EPSILON = value
/external/fonttools/Lib/fontTools/misc/
Dtransform.py54 _EPSILON = 1e-15 variable
55 _ONE_EPSILON = 1 - _EPSILON
56 _MINUS_ONE_EPSILON = -1 + _EPSILON
60 if abs(v) < _EPSILON:
/external/tensorflow/tensorflow/contrib/metrics/python/ops/
Dmetric_ops.py45 _EPSILON = 1e-7 variable
934 kepsilon = _EPSILON # to account for floating point imprecisions
1320 (math_ops.reduce_sum(weight_totals_for_true) + _EPSILON))
1323 (math_ops.reduce_sum(weight_totals_for_false) + _EPSILON))
1348 (total_0 + _EPSILON))
1350 (total_1 + _EPSILON))
1357 (total_0 - 1. + _EPSILON))
1360 placement_values_1, auc_1)) / (total_1 - 1. + _EPSILON))
1362 (var_0 / (total_0 + _EPSILON)) + (var_1 / (total_1 + _EPSILON)))
1368 estimate = math_ops.log(auc / (1. - auc + _EPSILON))
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dmathlimits.cc111 const Type MathLimits<Type>::kEpsilon = PREFIX##_EPSILON; \