前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >tf.Operation

tf.Operation

作者头像
狼啸风云
修改2022-09-03 20:16:07
6150
修改2022-09-03 20:16:07
举报

目录

1、__init__

2、Properties

1、control_inputs

2、device

3、graph

4、inputs

5、name

6、node_def

7、op_def

8、outputs

9、traceback

10、traceback_with_start_lines

11、type

2、Methods

1、colocation_groups

2、get_attr

3、run

4、values


Class Operation

Represents a graph node that performs computation on tensors.

Aliases:

An Operation is a node in a TensorFlow Graph that takes zero or more Tensor objects as input, and produces zero or more Tensor objects as output. Objects of type Operation are created by calling a Python op constructor (such as tf.matmul) or tf.Graph.create_op.

For example c = tf.matmul(a, b) creates an Operation of type "MatMul" that takes tensors a and b as input, and produces c as output.

After the graph has been launched in a session, an Operation can be executed by passing it to tf.Session.run. op.run() is a shortcut for calling tf.compat.v1.get_default_session().run(op).

1、__init__

View source

代码语言:javascript
复制
__init__(
    node_def,
    g,
    inputs=None,
    output_types=None,
    control_inputs=None,
    input_types=None,
    original_op=None,
    op_def=None
)

Creates an Operation.

NOTE: This constructor validates the name of the Operation (passed as node_def.name). Valid Operation names match the following regular expression:

代码语言:javascript
复制
[A-Za-z0-9.][A-Za-z0-9_.\\-/]*

Args:

  • node_def: node_def_pb2.NodeDef. NodeDef for the Operation. Used for attributes of node_def_pb2.NodeDef, typically name, op, and device. The input attribute is irrelevant here as it will be computed when generating the model.
  • g: Graph. The parent graph.
  • inputs: list of Tensor objects. The inputs to this Operation.
  • output_types: list of DType objects. List of the types of the Tensors computed by this operation. The length of this list indicates the number of output endpoints of the Operation.
  • control_inputs: list of operations or tensors from which to have a control dependency.
  • input_types: List of DType objects representing the types of the tensors accepted by the Operation. By default uses [x.dtype.base_dtype for x in inputs]. Operations that expect reference-typed inputs must specify these explicitly.
  • original_op: Optional. Used to associate the new Operation with an existing Operation (for example, a replica with the op that was replicated).
  • op_def: Optional. The op_def_pb2.OpDef proto that describes the op type that this Operation represents.

Raises:

  • TypeError: if control inputs are not Operations or Tensors, or if node_def is not a NodeDef, or if g is not a Graph, or if inputs are not tensors, or if inputs and input_types are incompatible.
  • ValueError: if the node_def name is not valid.

2、Properties

1、control_inputs

The Operation objects on which this op has a control dependency.

Before this op is executed, TensorFlow will ensure that the operations in self.control_inputs have finished executing. This mechanism can be used to run ops sequentially for performance reasons, or to ensure that the side effects of an op are observed in the correct order.

Returns:

A list of Operation objects.

2、device

The name of the device to which this op has been assigned, if any.

Returns:

The string name of the device to which this op has been assigned, or an empty string if it has not been assigned to a device.

3、graph

The Graph that contains this operation.

4、inputs

The list of Tensor objects representing the data inputs of this op.

5、name

The full name of this operation.

6、node_def

Returns the NodeDef representation of this operation.

Returns:

A NodeDef protocol buffer.

7、op_def

Returns the OpDef proto that represents the type of this op.

Returns:

An OpDef protocol buffer.

8、outputs

The list of Tensor objects representing the outputs of this op.

9、traceback

Returns the call stack from when this operation was constructed.

10、traceback_with_start_lines

Same as traceback but includes start line of function definition.

Returns:

A list of 5-tuples (filename, lineno, name, code, func_start_lineno).

11、type

The type of the op (e.g. "MatMul").

2、Methods

1、colocation_groups

View source

代码语言:javascript
复制
colocation_groups()
  • Returns the list of colocation groups of the op.

2、get_attr

View source

代码语言:javascript
复制
get_attr(name)

Returns the value of the attr of this op with the given name.

Args:

  • name: The name of the attr to fetch.

Returns:

  • The value of the attr, as a Python object.

Raises:

  • ValueError: If this op does not have an attr with the given name.

3、run

View source

代码语言:javascript
复制
run(
    feed_dict=None,
    session=None
)

Runs this operation in a Session.

Calling this method will execute all preceding operations that produce the inputs needed for this operation.

N.B. Before invoking Operation.run(), its graph must have been launched in a session, and either a default session must be available, or session must be specified explicitly.

Args:

  • feed_dict: A dictionary that maps Tensor objects to feed values. See tf.Session.run for a description of the valid feed values.
  • session: (Optional.) The Session to be used to run to this operation. If none, the default session will be used.

4、values

View source

代码语言:javascript
复制
values()

DEPRECATED: Use outputs.

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-11-03 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1、__init__
  • 2、Properties
    • 1、control_inputs
      • 2、device
        • 3、graph
          • 4、inputs
            • 5、name
              • 6、node_def
                • 7、op_def
                  • 8、outputs
                    • 9、traceback
                      • 10、traceback_with_start_lines
                        • 11、type
                        • 2、Methods
                          • 1、colocation_groups
                            • 2、get_attr
                              • 3、run
                                • 4、values
                                领券
                                问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档