Searched refs:AbsoluteValue (Results 1 – 6 of 6) sorted by relevance
22 from tensorflow.contrib.distributions.python.ops.bijectors.absolute_value import AbsoluteValue35 bijector = AbsoluteValue(validate_args=True)58 bijector = AbsoluteValue(validate_args=True)64 bijector = AbsoluteValue(validate_args=True)
33 class AbsoluteValue(bijector.Bijector): class95 super(AbsoluteValue, self).__init__(
120 bijector=bs.AbsoluteValue())
21 def AbsoluteValue : DiagGroup<"absolute-value">;
41 InGroup<AbsoluteValue>;46 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;50 InGroup<AbsoluteValue>;54 InGroup<AbsoluteValue>;
27 #define AbsoluteValue(x) ((x) < 0 ? -(x) : (x)) macro