标签: python tensorflow keras
我有张量,其dtype打印为:
<dtype: 'float32'>
但是,当我将此张量传递给内置函数时,它会检查以下条件:
x.dtype.char in numpy.typecodes["AllFloat"]
和 我收到错误:
AttributeError: 'DType' object has no attribute 'char'
如何使此张量产生dtype.char值?