ngraph.utils.node_factory.Output

class ngraph.utils.node_factory.Output

Bases: pybind11_builtins.pybind11_object

ngraph.impl.Output wraps ngraph::Output<Node>

__init__(*args, **kwargs)

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__(*args, **kwargs)

Initialize self.

get_element_type(self)

The element type of the output referred to by this output handle.

get_index(self)

The index of the output referred to by this output handle.

get_node(self)

Get node referenced by this output handle.

get_partial_shape(self)

The partial shape of the output referred to by this output handle.

get_shape(self)

The shape of the output referred to by this output handle.

get_target_inputs(self)

A set containing handles for all inputs targeted by the output referenced by this output handle. Returns ———- get_target_inputs : Set[Input] Set of Inputs.

get_element_type(self: _pyngraph.Output)_pyngraph.Type

The element type of the output referred to by this output handle.

get_element_typeType

Type of the output.

get_index(self: _pyngraph.Output) → int

The index of the output referred to by this output handle.

get_indexint

Index value as integer.

get_node(self: _pyngraph.Output)_pyngraph.Node

Get node referenced by this output handle.

get_nodeNode

Node object referenced by this output handle.

get_partial_shape(self: _pyngraph.Output)_pyngraph.PartialShape

The partial shape of the output referred to by this output handle.

get_partial_shapePartialShape

PartialShape of the output.

get_shape(self: _pyngraph.Output)_pyngraph.Shape

The shape of the output referred to by this output handle.

get_shapeShape

Shape of the output.

get_target_inputs(self: _pyngraph.Output) → Set[_pyngraph.Input]

A set containing handles for all inputs targeted by the output referenced by this output handle. Returns ———- get_target_inputs : Set[Input]

Set of Inputs.