tensorflow-0.2.0.0: TensorFlow bindings.

Safe HaskellNone
LanguageHaskell2010

TensorFlow.Output

Contents

Synopsis

Documentation

newtype ControlNode Source #

A type of graph node which has no outputs. These nodes are valuable for causing side effects when they are run.

Constructors

ControlNode 

newtype Device Source #

A device that a node can be assigned to. There's a naming convention where the device names are constructed from job and replica names.

Constructors

Device 

Fields

Ops

newtype NodeName Source #

The name of a node in the graph. This corresponds to the proto field NodeDef.name. Includes the scope prefix (if any) and a unique identifier (if the node was implicitly named).

Constructors

NodeName 

Fields

data OpDef Source #

Op definition. This corresponds somewhat to the NodeDef proto.

Instances

Eq OpDef Source # 

Methods

(==) :: OpDef -> OpDef -> Bool #

(/=) :: OpDef -> OpDef -> Bool #

Ord OpDef Source # 

Methods

compare :: OpDef -> OpDef -> Ordering #

(<) :: OpDef -> OpDef -> Bool #

(<=) :: OpDef -> OpDef -> Bool #

(>) :: OpDef -> OpDef -> Bool #

(>=) :: OpDef -> OpDef -> Bool #

max :: OpDef -> OpDef -> OpDef #

min :: OpDef -> OpDef -> OpDef #

opAttr :: Attribute a => Text -> Lens' OpDef a Source #

newtype OpType Source #

The type of op of a node in the graph. This corresponds to the proto field NodeDef.op.

Constructors

OpType 

Fields

data Output Source #

An output of a TensorFlow node.

Constructors

Output