TypeError: tf.shape is not a function
TypeError: tf.shape is not a function
我正在尝试将一些 python 张量流代码转换为 javascript。 tensorflow js没有像tensorflow那样的属性形状。有没有办法转换这行代码?
module 'tensorflowjs' has no attribute 'shape'
import tensorflowjs as tfjs
input_shape = [1, 1, 256]
tfjs.shape(input_shape)
AttributeError: module 'tensorflowjs' has no attribute 'shape'
shape
是创建张量函数的第二个属性。
tf.tensor (values, shape?, dtype?)
我正在尝试将一些 python 张量流代码转换为 javascript。 tensorflow js没有像tensorflow那样的属性形状。有没有办法转换这行代码? module 'tensorflowjs' has no attribute 'shape'
import tensorflowjs as tfjs
input_shape = [1, 1, 256]
tfjs.shape(input_shape)
AttributeError: module 'tensorflowjs' has no attribute 'shape'
shape
是创建张量函数的第二个属性。
tf.tensor (values, shape?, dtype?)