参考 tf.convert_to_tensor - 云+社区 - 腾讯云
将给定值转换为张量。
tf.convert_to_tensor(
value,
dtype=None,
dtype_hint=None,
name=None
)
该函数将各种类型的Python对象转换为张量对象。它接受张量对象、数字数组、Python列表和Python标量。
例:
import numpy as np
def my_func(arg):
arg = tf.convert_to_tensor(arg, dtype=tf.float32)
return tf.matmul(arg, arg) + arg
# The following calls are equivalent.
value_1 = my_func(tf.constant([[1.0, 2.0], [3.0, 4.0]]))
value_2 = my_func([[1.0, 2.0], [3.0, 4.0]])
value_3 = my_func(np.array([[1.0, 2.0], [3.0, 4.0]], dtype=np.float32))
这个函数在用Python编写新操作时非常有用(如上面示例中的my_func)。所有标准的Python op构造函数都将此函数应用于它们的每个张量值输入,这使得这些ops除了接受张量对象外,还可以接受numpy数组、Python列表和标量。
参数:
value
:类型具有注册张量转换函数的对象。返回值:
可能产生的异常:
TypeError
: If no conversion function is registered for value
to dtype
.RuntimeError
: If a registered conversion function returns an invalid value.ValueError
: If the value
is a tensor not of given dtype
in graph mode.