tf.placeholder_with_default()

tf.placeholder_with_default(input, shape, name=None)

A placeholder op that passes though input when its output is not fed.

Args:
  • input: A Tensor. The default value to produce when output is not fed.
  • shape: A tf.TensorShape or list of ints. The (possibly partial) shape of the tensor.
  • name: A name for the operation (optional).
Returns:

A Tensor. Has the same type as input. A placeholder tensor that defaults to input if it is not fed.

For feeding SparseTensors which are composite type, there is a convenience function:

doc_TensorFlow
2016-10-14 13:08:42
Comments
Leave a Comment

Please login to continue.