TensorFlow:如何获得占位符的dtype?

时间:2017-05-25 08:49:16

标签: tensorflow deep-learning

有没有办法以与dtpye类似的方式获取占位符的ph.get_shape()

1 个答案:

答案 0 :(得分:2)

您可以使用ph.dtype。它返回占位符的数据类型。

    import tensorflow as tf 
    X = tf.placeholder(dtype=tf.float32, name="X") 
    print(X.dtype) # >> <dtype: 'float32'>