tf.raw_ops.PlaceholderV2

A placeholder op for a value that will be fed into the computation.

N.B. This operation will fail with an error if it is executed. It is intended as a way to represent a value that will always be fed, and to provide attrs that enable the fed value to be checked at runtime.

dtypeA tf.DType. The type of elements in the tensor.
shapeA tf.TensorShape or list of ints. The shape of the tensor. The shape can be any partially-specified shape. To be unconstrained, pass in a shape with unknown rank.
nameA name for the operation (optional).

A Tensor of type dtype.