如何在张量流中做 "round half up"

How to do "round half up" in tensorflow

我在做 tf.round(x) x=[0.4, 1.5, 2.5, -1.5, -2.5, -0.4]

时遇到了一些问题

如果我想得到 ans=[0, 2, 3, -2, -3, 0] 离零一半的舍入

我该怎么办? 我试过 tf.keras.backend.round(), tf.math.round, tf.math.rint()

我在 python 中得到了类似的答案,但在 TF

中没有
>>>decimal.Decimal(101.5).quantize(decimal.Decimal('0'), rounding=decimal.ROUND_HALF_UP)
Decimal('102')
>>>decimal.Decimal(102.5).quantize(decimal.Decimal('0'), rounding=decimal.ROUND_HALF_UP)
Decimal('103')
>>>decimal.Decimal(-101.5).quantize(decimal.Decimal('0'), rounding=decimal.ROUND_HALF_UP)
Decimal('-102')
>>>decimal.Decimal(-102.5).quantize(decimal.Decimal('0'), rounding=decimal.ROUND_HALF_UP)
Decimal('-103')

谢谢

这个怎么样?

x = np.array([0.4, 1.5, 2.5, -1.5, -2.5, -0.4]) 
for i, val in enumerate(x):
   if val % 1 == 0.5
       x[i] = tf.math.floor(x[i]) if val < 0 else tf.math.floor(x[i]+0.5)
   else
       x[i] = tf.math.round(x[i])
print(x)

[ 0. 2. 3. -2. -3. 0.]

尝试

x=tf.constant([0.4, 1.5, 2.5, -1.5, -2.5, -0.4])
x=tf.where(x>0, tf.math.nextafter(x, np.inf), tf.math.nextafter(x, -np.inf))
x=tf.round(x)

这将从 0 舍入。