contrib.copy_graph.copy_op_to_graph

tf.contrib.copy_graph.copy_op_to_graph

tf.contrib.copy_graph.copy_op_to_graph

copy_op_to_graph(
    org_instance,
    to_graph,
    variables,
    scope=''
)

Defined in tensorflow/contrib/copy_graph/python/util/copy_elements.py.

Given an Operation 'org_instancefrom oneGraph, initializes and returns a copy of it from anotherGraph, under the specified scope (default""`).

The copying is done recursively, so any Operation whose output is required to evaluate the org_instance, is also copied (unless already done).

Since Variable instances are copied separately, those required to evaluate org_instance must be provided as input.

Args:

  • org_instance: An Operation from some Graph. Could be a Placeholder as well.
  • to_graph: The Graph to copy org_instance to.
  • variables: An iterable of Variable instances to copy org_instance to.
  • scope: A scope for the new Variable (default "").

Returns:

The copied Operation from to_graph.

Raises:

  • TypeError: If org_instance is not an Operation or Tensor.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/copy_graph/copy_op_to_graph

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部