第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在張量流中進(jìn)行“四舍五入”

如何在張量流中進(jìn)行“四舍五入”

鴻蒙傳說 2023-09-19 17:17:00
我在執(zhí)行 tf.round(x) x=[0.4, 1.5, 2.5, -1.5, -2.5, -0.4] 時(shí)遇到一些問題如果我想讓 ans=[0, 2, 3, -2, -3, 0] 從零舍入一半我應(yīng)該怎么做?我嘗試過 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')謝謝
查看完整描述

2 回答

?
手掌心

TA貢獻(xiàn)1942條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試

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 開始舍入。


查看完整回答
反對(duì) 回復(fù) 2023-09-19
?
炎炎設(shè)計(jì)

TA貢獻(xiàn)1808條經(jīng)驗(yàn) 獲得超4個(gè)贊

這個(gè)怎么樣 ?


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.]


查看完整回答
反對(duì) 回復(fù) 2023-09-19
  • 2 回答
  • 0 關(guān)注
  • 156 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)