![]() |
Create a tf.compat.v1.placeholder
for the Graph Editor.
tf.contrib.graph_editor.make_placeholder_from_tensor(
t,
scope=None,
prefix=_DEFAULT_PLACEHOLDER_PREFIX
)
Note that the correct graph scope must be set by the calling function.
Args:
t
: atf.Tensor
whose name will be used to create the placeholder (see function placeholder_name).scope
: absolute scope within which to create the placeholder. None means that the scope oft
is preserved.""
means the root scope.prefix
: placeholder name prefix.
Returns:
A newly created tf.compat.v1.placeholder
.
Raises:
TypeError
: ift
is notNone
or atf.Tensor
.