tf.contrib.copy_graph.copy_variable_to_graph
copy_variable_to_graph(
org_instance,
to_graph,
scope=''
)
Defined in tensorflow/contrib/copy_graph/python/util/copy_elements.py.
Given a Variable instance from one Graph, initializes and returns
a copy of it from another Graph, under the specified scope
(default "").
Args:
org_instance: AVariablefrom someGraph.to_graph: TheGraphto copy theVariableto.scope: A scope for the newVariable(default"").
Returns:
The copied Variable from to_graph.
Raises:
TypeError: Iforg_instanceis not aVariable.
