当前位置: 代码迷 >> 综合 >> TypeError: float() argument must be a string or a number, not ‘Dimension‘
  详细解决方案

TypeError: float() argument must be a string or a number, not ‘Dimension‘

热度:51   发布时间:2023-10-28 13:34:32.0

出错代码

tf.convert_to_tensor(inputs.shape[0], dtype=tf.float32)

解决方法

tf.convert_to_tensor(inputs.shape[0].value, dtype=tf.float32)
  相关解决方案