tf.contrib.copy_graph.get_copied_op
get_copied_op(
org_instance,
graph,
scope=''
)
Defined in tensorflow/contrib/copy_graph/python/util/copy_elements.py.
Given an Operation instance from some Graph, returns
its namesake from graph, under the specified scope
(default "").
If a copy of org_instance is present in graph under the given
scope, it will be returned.
Args:
org_instance: AnOperationfrom someGraph.graph: TheGraphto be searched for a copr oforg_instance.scope: The scopeorg_instanceis present in.
Returns:
The Operation copy from graph.
