aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.copy_graph.copy_variable_to_graph.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.copy_graph.copy_variable_to_graph.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.copy_graph.copy_variable_to_graph.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.copy_graph.copy_variable_to_graph.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.copy_graph.copy_variable_to_graph.md
new file mode 100644
index 0000000000..85e336a29b
--- /dev/null
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard5/tf.contrib.copy_graph.copy_variable_to_graph.md
@@ -0,0 +1,20 @@
+### `tf.contrib.copy_graph.copy_variable_to_graph(org_instance, to_graph, scope='')` {#copy_variable_to_graph}
+
+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: A `Variable` from some `Graph`.
+to_graph: The `Graph` to copy the `Variable` to.
+scope: A scope for the new `Variable` (default `""`).
+
+##### Returns:
+
+ The copied `Variable` from `to_graph`.
+
+##### Raises:
+
+
+* <b>`TypeError`</b>: If `org_instance` is not a `Variable`.
+