标签: python tensorflow
在python中使用哪个函数来获取tensorflow中张量的数据类型?我需要根据不同的张量定义动态数据类型。
答案 0 :(得分:9)
您可以使用x.dtype获取类型,如下所示:
x.dtype
import tensorflow as tf x=tf.constant([1,2]) x.dtype
这会打印tf.int32
tf.int32
答案 1 :(得分:0)
如果张量是Pandas数据框,请使用以下命令:
print(df.dtypes)
对于特定列,使用
print (df['Prices'].dtypes)
参考:Link