如何在张量流中获得张量的数据类型?

时间:2017-05-15 11:21:54

标签: python tensorflow

在python中使用哪个函数来获取tensorflow中张量的数据类型?我需要根据不同的张量定义动态数据类型。

2 个答案:

答案 0 :(得分:9)

您可以使用x.dtype获取类型,如下所示:

import tensorflow as tf
x=tf.constant([1,2])
x.dtype

这会打印tf.int32

答案 1 :(得分:0)

如果张量是Pandas数据框,请使用以下命令:

print(df.dtypes)

对于特定列,使用

print (df['Prices'].dtypes)

参考:Link