标签: tensorflow deep-learning
有没有办法以与dtpye类似的方式获取占位符的ph.get_shape()?
dtpye
ph.get_shape()
答案 0 :(得分:2)
您可以使用ph.dtype。它返回占位符的数据类型。
import tensorflow as tf X = tf.placeholder(dtype=tf.float32, name="X") print(X.dtype) # >> <dtype: 'float32'>