gpt4 book ai didi

python - 'tensorflow.negative' 是否始终与运算符 "-"相同?

转载 作者:行者123 更新时间:2023-12-01 08:11:44 25 4
gpt4 key购买 nike

我看到一些执行按元素运算的 tensorflow 函数:reduce_sumaddnegative 等。

例如这段代码:

import tensorflow as tf
distance = tf.reduce_sum(tf.abs(tf.add(xtr, tf.negative(xte))), reduction_indices=1)

当我尝试使用以下代码时,我发现它们具有相同的效果:

distance = tf.reduce_sum(tf.abs(xtr-xte), reduction_indices=1)

所以我想知道:

1、是否总可以替换为+- *?如果不是,你能给我一些异常(exception)的例子吗?

2、另外,如何列出所有具有相应运算符的函数?

最佳答案

是的,您始终可以将它们替换为相应的运算符。

查看此问题以获取完整列表

In tensorflow what is the difference between tf.add and operator (+)?

关于python - 'tensorflow.negative' 是否始终与运算符 "-"相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55206840/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com