package tensorflow

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

message AllocationDescription

allocation_description.proto:10

Used in: NodeExecStats, TensorDescription

message AllocationRecord

step_stats.proto:13

An allocation/de-allocation operation performed by the allocator.

Used in: AllocatorMemoryUsed

message AllocatorMemoryUsed

step_stats.proto:20

Used in: NodeExecStats

message ApiDef

api_def.proto:30

Used to specify and override the default API & behavior in the generated code for client languages, from what you would get from the OpDef alone. There will be a set of ApiDefs that are common to all client languages, and another set per client language. The per-client-language ApiDefs will inherit values from the common ApiDefs which it can either replace or modify. We separate the API definition from the OpDef so we can evolve the API while remaining backwards compatible when interpretting old graphs. Overrides go in an "api_def.pbtxt" file with a text-format ApiDefs message. WARNING: Be *very* careful changing the API for any existing op -- you can change the semantics of existing code. These changes may need to wait until a major release of TensorFlow to avoid breaking our compatibility promises.

Used in: ApiDefs

message ApiDef.Arg

api_def.proto:79

Used in: ApiDef

message ApiDef.Attr

api_def.proto:102

Description of the graph-construction-time configuration of this Op. That is to say, this describes the attr fields that will be specified in the NodeDef.

Used in: ApiDef

message ApiDef.Endpoint

api_def.proto:61

If you specify any endpoint, this will replace all of the inherited endpoints. The first endpoint should be the "canonical" endpoint, and should not be deprecated (unless all endpoints are deprecated).

Used in: ApiDef

enum ApiDef.Visibility

api_def.proto:42

Used in: ApiDef

message ApiDefs

api_def.proto:134

message AssetFileDef

meta_graph.proto:315

An asset file def for a single file or a set of sharded files with the same name.

Used in: MetaGraphDef

message AttrValue

attr_value.proto:16

Protocol buffer representing the value for an attr used to configure an Op. Comment indicates the corresponding attr type. Only the field matching the attr type may be filled.

Used in: ApiDef.Attr, FunctionDef, KernelDef.AttrConstraint, NameAttrList, NodeDef, OpDef.AttrDef, RewriterConfig.CustomGraphOptimizer, eager.Operation

message AttrValue.ListValue

attr_value.proto:18

LINT.IfChange

Used in: AttrValue

message AutoParallelOptions

rewriter_config.proto:12

Used in: RewriterConfig

message BundleEntryProto

tensor_bundle.proto:43

Describes the metadata related to a checkpointed tensor.

message BundleHeaderProto

tensor_bundle.proto:23

Special header that is associated with a bundle. TODO(zongheng,zhifengc): maybe in the future, we can add information about which binary produced this checkpoint, timestamp, etc. Sometime, these can be valuable debugging information. And if needed, these can be used as defensive information ensuring reader (binary version) of the checkpoint and the writer (binary version) must match within certain range, etc.

enum BundleHeaderProto.Endianness

tensor_bundle.proto:32

An enum indicating the endianness of the platform that produced this bundle. A bundle can only be read by a platform with matching endianness. Defaults to LITTLE, as most modern platforms are little-endian. Affects the binary tensor data bytes only, not the metadata in protobufs.

Used in: BundleHeaderProto

message BytesList

feature.proto:65

Containers to hold repeated fundamental values.

Used in: Feature

message CallableOptions

config.proto:522

Defines a subgraph in another `GraphDef` as a set of feed points and nodes to be fetched or executed. Compare with the arguments to `Session::Run()`.

Used in: MakeCallableRequest

message CheckpointableObjectGraph

checkpointable_object_graph.proto:11

message CheckpointableObjectGraph.CheckpointableObject

checkpointable_object_graph.proto:12

Used in: CheckpointableObjectGraph

message CheckpointableObjectGraph.CheckpointableObject.ObjectReference

checkpointable_object_graph.proto:13

Used in: CheckpointableObject

message CheckpointableObjectGraph.CheckpointableObject.SerializedTensor

checkpointable_object_graph.proto:21

Used in: CheckpointableObject

message CheckpointableObjectGraph.CheckpointableObject.SlotVariableReference

checkpointable_object_graph.proto:35

Used in: CheckpointableObject

message CleanupAllRequest

worker.proto:178

Used as request type in: grpc.WorkerService.CleanupAll

message CleanupAllResponse

worker.proto:189

Used as response type in: grpc.WorkerService.CleanupAll

(message has no fields)

message CleanupGraphRequest

worker.proto:294

Used as request type in: grpc.WorkerService.CleanupGraph

message CleanupGraphResponse

worker.proto:298

Used as response type in: grpc.WorkerService.CleanupGraph

(message has no fields)

message CloseSessionRequest

master.proto:201

Used as request type in: grpc.MasterService.CloseSession

Used as field type in: ReplayOp

message CloseSessionResponse

master.proto:207

Used as response type in: grpc.MasterService.CloseSession

Used as field type in: ReplayOp

(message has no fields)

message ClusterDef

cluster.proto:80

Defines a TensorFlow cluster as a set of jobs.

Used in: ConfigProto, ServerDef

message CollectionDef

meta_graph.proto:151

CollectionDef should cover most collections. To add a user-defined collection, do one of the following: 1. For simple data types, such as string, int, float: tf.add_to_collection("your_collection_name", your_simple_value) strings will be stored as bytes_list. 2. For Protobuf types, there are three ways to add them: 1) tf.add_to_collection("your_collection_name", your_proto.SerializeToString()) collection_def { key: "user_defined_bytes_collection" value { bytes_list { value: "queue_name: \"test_queue\"\n" } } } or 2) tf.add_to_collection("your_collection_name", str(your_proto)) collection_def { key: "user_defined_string_collection" value { bytes_list { value: "\n\ntest_queue" } } } or 3) any_buf = any_pb2.Any() tf.add_to_collection("your_collection_name", any_buf.Pack(your_proto)) collection_def { key: "user_defined_any_collection" value { any_list { value { type_url: "type.googleapis.com/tensorflow.QueueRunnerDef" value: "\n\ntest_queue" } } } } 3. For Python objects, implement to_proto() and from_proto(), and register them in the following manner: ops.register_proto_function("your_collection_name", proto_type, to_proto=YourPythonObject.to_proto, from_proto=YourPythonObject.from_proto) These functions will be invoked to serialize and de-serialize the collection. For example, ops.register_proto_function(ops.GraphKeys.GLOBAL_VARIABLES, proto_type=variable_pb2.VariableDef, to_proto=Variable.to_proto, from_proto=Variable.from_proto)

Used in: MetaGraphDef

message CollectionDef.AnyList

meta_graph.proto:194

AnyList is used for collecting Any protos.

Used in: CollectionDef

message CollectionDef.BytesList

meta_graph.proto:179

BytesList is used for collecting strings and serialized protobufs. For example: collection_def { key: "trainable_variables" value { bytes_list { value: "\n\017conv1/weights:0\022\024conv1/weights/Assign \032\024conv1/weights/read:0" value: "\n\016conv1/biases:0\022\023conv1/biases/Assign\032 \023conv1/biases/read:0" } } }

Used in: CollectionDef

message CollectionDef.FloatList

meta_graph.proto:189

FloatList is used for collecting float values.

Used in: CollectionDef

message CollectionDef.Int64List

meta_graph.proto:184

Int64List is used for collecting int, int64 and long values.

Used in: CollectionDef

message CollectionDef.NodeList

meta_graph.proto:162

NodeList is used for collecting nodes in graph. For example collection_def { key: "summaries" value { node_list { value: "input_producer/ScalarSummary:0" value: "shuffle_batch/ScalarSummary:0" value: "ImageSummary:0" } }

Used in: CollectionDef

message CompleteGroupRequest

worker.proto:498

Supplies one or more device names as members of the group identified by group_key. Service will respond when all group_size devices become known. All devices in group must have same type.

Used as request type in: grpc.WorkerService.CompleteGroup

message CompleteGroupResponse

worker.proto:506

Gives the complete membership of the group identified by group_key.

Used as response type in: grpc.WorkerService.CompleteGroup

message CompleteInstanceRequest

worker.proto:519

Supplies data about one collective op belonging to the instance identified by instance_key. Service will respond when all group_size ops have become known. Most of the data being sent is for correctness checking, to ensure that all ops in the instance share common attributes.

Used as request type in: grpc.WorkerService.CompleteInstance

message CompleteInstanceResponse

worker.proto:535

Confirms that every op in the instance has consistently declared itself. Also gives the source_rank in case of broadcast.

Used as response type in: grpc.WorkerService.CompleteInstance

message CondContextDef

control_flow.proto:31

Protocol buffer representing a CondContext object.

Used in: ControlFlowContextDef

message ConfigProto

config.proto:305

Session configuration parameters. The system picks appropriate values for fields that are not set.

Used in: CreateSessionRequest, ServerDef, serving.SessionBundleConfig

message ConfigProto.Experimental

config.proto:405

Everything inside Experimental is subject to change and is not subject to API stability guarantees in https://www.tensorflow.org/guide/version_compat.

Used in: ConfigProto

message ControlFlowContextDef

control_flow.proto:23

Container for any kind of control flow context. Any other control flow contexts that are added below should also be added here.

Used in: CondContextDef, WhileContextDef

message CostGraphDef

cost_graph.proto:12

Used in: RunGraphResponse, RunMetadata

message CostGraphDef.Node

cost_graph.proto:13

Used in: CostGraphDef

message CostGraphDef.Node.InputInfo

cost_graph.proto:27

Inputs of this node. They must be executed before this node can be executed. An input is a particular output of another node, specified by the node id and the output index.

Used in: Node

message CostGraphDef.Node.OutputInfo

cost_graph.proto:34

Outputs of this node.

Used in: Node

message CreateSessionRequest

master.proto:37

Used as request type in: grpc.MasterService.CreateSession

Used as field type in: ReplayOp

message CreateSessionResponse

master.proto:48

Used as response type in: grpc.MasterService.CreateSession

Used as field type in: ReplayOp

message CreateWorkerSessionRequest

worker.proto:59

Used as request type in: grpc.WorkerService.CreateWorkerSession

message CreateWorkerSessionResponse

worker.proto:71

Used as response type in: grpc.WorkerService.CreateWorkerSession

(message has no fields)

message CriticalSectionDef

critical_section.proto:11

Protocol buffer representing a CriticalSection.

message CriticalSectionExecutionDef

critical_section.proto:17

Protocol buffer representing a CriticalSection execution.

enum DataType

types.proto:11

LINT.IfChange

Used in: AttrValue, AttrValue.ListValue, BundleEntryProto, CompleteInstanceRequest, CostGraphDef.Node.OutputInfo, FixedLenFeatureProto, GraphTransferConstNodeInfo, GraphTransferGraphInputNodeInfo, GraphTransferGraphOutputNodeInfo, OpDef.ArgDef, RemoteFusedGraphExecuteInfo.TensorShapeTypeProto, TensorDescription, TensorInfo, TensorProto, VarLenFeatureProto

message DebugOptions

debug.proto:55

Options for initializing DebuggerState in TensorFlow Debugger (tfdbg).

Used in: RegisterGraphRequest, RunOptions

message DebugTensorWatch

debug.proto:11

Option for watching a node in TensorFlow Debugger (tfdbg).

Used in: DebugOptions

message DebuggedSourceFile

debug.proto:71

Used in: DebuggedSourceFiles

message DebuggedSourceFiles

debug.proto:88

message DeleteWorkerSessionRequest

worker.proto:82

Used as request type in: grpc.WorkerService.DeleteWorkerSession

message DeleteWorkerSessionResponse

worker.proto:87

Used as response type in: grpc.WorkerService.DeleteWorkerSession

(message has no fields)

message DeregisterGraphRequest

worker.proto:155

Used as request type in: grpc.WorkerService.DeregisterGraph

message DeregisterGraphResponse

worker.proto:168

TODO(mrry): Optionally add summary stats for the graph.

Used as response type in: grpc.WorkerService.DeregisterGraph

(message has no fields)

message DeviceAttributes

device_attributes.proto:32

Used in: GetStatusResponse, ListDevicesResponse, eager.CreateContextResponse

message DeviceLocality

device_attributes.proto:20

Used in: DeviceAttributes, RecvBufRequest, RecvTensorRequest

message DeviceProperties

device_properties.proto:23

Used in: NamedDevice

message DeviceStepStats

step_stats.proto:77

Used in: StepStats

message Example

example.proto:88

Used in: serving.ExampleList, serving.ExampleListWithContext

message ExampleParserConfiguration

example_parser_configuration.proto:37

message ExecutorOpts

worker.proto:205

Options specific to the execution of a single step.

Used in: RunGraphRequest

message ExtendSessionRequest

master.proto:78

Used as request type in: grpc.MasterService.ExtendSession

Used as field type in: ReplayOp

message ExtendSessionResponse

master.proto:94

TODO(mrry): Return something about the operation?

Used as response type in: grpc.MasterService.ExtendSession

Used as field type in: ReplayOp

message Feature

feature.proto:76

Containers for non-sequential data.

Used in: FeatureList, Features

message FeatureConfiguration

example_parser_configuration.proto:30

Used in: ExampleParserConfiguration

message FeatureList

feature.proto:98

Containers for sequential data. A FeatureList contains lists of Features. These may hold zero or more Feature values. FeatureLists are organized into categories by name. The FeatureLists message contains the mapping from name to FeatureList.

Used in: FeatureLists

message FeatureLists

feature.proto:102

Used in: SequenceExample

message Features

feature.proto:85

Used in: Example, SequenceExample

message FixedLenFeatureProto

example_parser_configuration.proto:23

Used in: FeatureConfiguration

message FloatList

feature.proto:68

Used in: Feature

message FunctionDef

function.proto:25

A function can be instantiated when the runtime can bind every attr with a value. When a GraphDef has a call to a function, it must have binding for every attr defined in the signature. TODO(zhifengc): * device spec, etc.

Used in: FunctionDefLibrary, eager.RegisterFunctionRequest

message FunctionDefLibrary

function.proto:14

A library is a set of named functions.

Used in: GraphDef

message GPUOptions

config.proto:16

Used in: ConfigProto

message GPUOptions.Experimental

config.proto:98

Used in: GPUOptions

message GPUOptions.Experimental.VirtualDevices

config.proto:101

Configuration for breaking down a visible GPU into multiple "virtual" devices.

Used in: Experimental

message GetStatusRequest

worker.proto:44

Used as request type in: grpc.WorkerService.GetStatus

(message has no fields)

message GetStatusResponse

worker.proto:47

Used as response type in: grpc.WorkerService.GetStatus

message GetStepSequenceRequest

worker.proto:543

Request for next agreed-upon step_id for the specified graph_keys. This is used to enable multiple graphs containing nodes from a common collective instance to coordinate using the same step_ids.

Used as request type in: grpc.WorkerService.GetStepSequence

message GetStepSequenceResponse

worker.proto:553

Next valid step_ids for one or more graph_keys.

Used as response type in: grpc.WorkerService.GetStepSequence

message GradientDef

function.proto:99

GradientDef defines the gradient function of a function defined in a function library. A gradient function g (specified by gradient_func) for a function f (specified by function_name) must follow the following: The function 'f' must be a numerical function which takes N inputs and produces M outputs. Its gradient function 'g', which is a function taking N + M inputs and produces N outputs. I.e. if we have (y1, y2, ..., y_M) = f(x1, x2, ..., x_N), then, g is (dL/dx1, dL/dx2, ..., dL/dx_N) = g(x1, x2, ..., x_N, dL/dy1, dL/dy2, ..., dL/dy_M), where L is a scalar-value function of (x1, x2, ..., xN) (e.g., the loss function). dL/dx_i is the partial derivative of L with respect to x_i.

Used in: FunctionDefLibrary

message GraphDef

graph.proto:14

Represents the graph of operations

Used in: CreateSessionRequest, ExtendSessionRequest, MetaGraphDef, RegisterGraphRequest, RemoteFusedGraphExecuteInfo, RunGraphResponse, RunMetadata

message GraphOptions

config.proto:215

Used in: ConfigProto, RegisterGraphRequest

message GraphTransferConstNodeInfo

graph_transfer_info.proto:24

Used in: GraphTransferInfo

message GraphTransferGraphInputNodeInfo

graph_transfer_info.proto:39

Used in: GraphTransferInfo

message GraphTransferGraphOutputNodeInfo

graph_transfer_info.proto:45

Used in: GraphTransferInfo

message GraphTransferInfo

graph_transfer_info.proto:54

Protocol buffer representing a handle to a tensorflow resource. Handles are not valid across executions, but can be serialized back and forth from within a single run.

enum GraphTransferInfo.Destination

graph_transfer_info.proto:55

Used in: GraphTransferInfo

message GraphTransferNodeInfo

graph_transfer_info.proto:15

Used in: GraphTransferInfo

message GraphTransferNodeInput

graph_transfer_info.proto:11

Used in: GraphTransferNodeInputInfo

message GraphTransferNodeInputInfo

graph_transfer_info.proto:31

Used in: GraphTransferInfo

message GraphTransferNodeOutputInfo

graph_transfer_info.proto:35

Used in: GraphTransferInfo

message HistogramProto

summary.proto:20

Serialization format for histogram module in core/lib/histogram/histogram.h

Used in: Summary.Value

message Int64List

feature.proto:71

Used in: Feature

Used in: LocalLinks

message IteratorStateMetadata

iterator.proto:12

Protocol buffer representing the metadata for an iterator's state stored as a Variant tensor.

message JobDef

cluster.proto:67

Defines a single job in a TensorFlow cluster.

Used in: ClusterDef

message KernelDef

kernel_def.proto:11

Used in: KernelList

message KernelDef.AttrConstraint

kernel_def.proto:18

Used in: KernelDef

message KernelList

kernel_def.proto:44

A collection of KernelDefs

message LabeledStepStats

worker.proto:387

Used in: LoggingResponse

message ListDevicesRequest

master.proto:252

Used as request type in: grpc.MasterService.ListDevices

Used as field type in: ReplayOp

message ListDevicesResponse

master.proto:264

Used as response type in: grpc.MasterService.ListDevices

Used as field type in: NewReplaySession, ReplayOp

Used in: DeviceLocality

message LoggingRequest

worker.proto:371

Out-of-band request to begin or end logging, or to retrieve logs for particular steps.

Used as request type in: grpc.WorkerService.Logging

message LoggingResponse

worker.proto:392

Used as response type in: grpc.WorkerService.Logging

message MakeCallableRequest

master.proto:275

Used as request type in: grpc.MasterService.MakeCallable

Used as field type in: ReplayOp

message MakeCallableResponse

master.proto:284

Used as response type in: grpc.MasterService.MakeCallable

Used as field type in: ReplayOp

message MemoryLogRawAllocation

log_memory.proto:55

message MemoryLogRawDeallocation

log_memory.proto:76

message MemoryLogStep

log_memory.proto:11

message MemoryLogTensorAllocation

log_memory.proto:19

message MemoryLogTensorDeallocation

log_memory.proto:31

message MemoryLogTensorOutput

log_memory.proto:40

message MemoryStats

step_stats.proto:42

For memory tracking.

Used in: NodeExecStats

message MetaGraphDef

meta_graph.proto:31

NOTE: This protocol buffer is evolving, and will go through revisions in the coming months. Protocol buffer containing the following which are necessary to restart training, run inference. It can be used to serialize/de-serialize memory objects necessary for running computation in a graph when crossing the process boundary. It can be used for long term storage of graphs, cross-language execution of graphs, etc. MetaInfoDef GraphDef SaverDef CollectionDef TensorInfo SignatureDef

Used in: SavedModel

message MetaGraphDef.MetaInfoDef

meta_graph.proto:34

Meta information regarding the graph to be exported. To be used by users of this protocol buffer to encode information regarding their meta graph.

Used in: MetaGraphDef

message NameAttrList

attr_value.proto:59

A list of attr names and their values. The whole list is attached with a string name. E.g., MatMul[T=float].

Used in: AttrValue, AttrValue.ListValue

message NamedDevice

device_properties.proto:54

message NamedTensorProto

named_tensor.proto:12

A pair of tensor name and tensor values.

Used in: RunGraphRequest, RunGraphResponse, RunStepRequest, RunStepResponse, serving.SessionBundleConfig, serving.SessionRunRequest, serving.SessionRunResponse

message NewReplaySession

replay_log.proto:12

Records the creation of a new replay session. We record the device listing here to capture the state of the cluster.

Used in: ReplayOp

message NodeDef

node_def.proto:11

Used in: FunctionDef, GraphDef

message NodeDef.ExperimentalDebugInfo

node_def.proto:64

Used in: NodeDef

message NodeExecStats

step_stats.proto:53

Time/size stats recorded for a single execution of a graph node.

Used in: DeviceStepStats

message NodeOutput

step_stats.proto:36

Output sizes recorded for a single execution of a graph node.

Used in: NodeExecStats

message OpDef

op_def.proto:15

Defines an operation. A NodeDef in a GraphDef specifies an Op by using the "op" field which should match the name of a OpDef. LINT.IfChange

Used in: FunctionDef, OpList

message OpDef.ArgDef

op_def.proto:21

For describing inputs and outputs.

Used in: OpDef

message OpDef.AttrDef

op_def.proto:60

Description of the graph-construction-time configuration of this Op. That is to say, this describes the attr fields that will be specified in the NodeDef.

Used in: OpDef

message OpDeprecation

op_def.proto:155

Information about version-dependent deprecation of an op

Used in: OpDef

message OpList

op_def.proto:164

A collection of OpDefs

Used in: MetaGraphDef.MetaInfoDef

message OptimizerOptions

config.proto:168

Options passed to the graph optimizer

Used in: GraphOptions

enum OptimizerOptions.GlobalJitLevel

config.proto:202

Control the use of the compiler/jit. Experimental.

Used in: OptimizerOptions

enum OptimizerOptions.Level

config.proto:186

Optimization level

Used in: OptimizerOptions

message PartialRunSetupRequest

master.proto:169

Used as request type in: grpc.MasterService.PartialRunSetup

Used as field type in: ReplayOp

message PartialRunSetupResponse

master.proto:188

Used as response type in: grpc.MasterService.PartialRunSetup

Used as field type in: ReplayOp

message QueueRunnerDef

queue_runner.proto:12

Protocol buffer representing a QueueRunner.

message RPCOptions

config.proto:287

Used in: ConfigProto

message ReaderBaseState

reader_base.proto:12

For serializing and restoring the state of ReaderBase, see reader_base.h for details.

message RecvBufRequest

worker.proto:441

Use of the fields below may vary by implementation. For example the buf_ptr and num_bytes may be set only for local operations and not sent on the wire, or only sent on the wire in one direction.

Used as request type in: grpc.WorkerService.RecvBuf

message RecvBufRespExtra

transport_options.proto:6

Extra data needed on a non-RDMA RecvBufResponse.

message RecvBufResponse

worker.proto:476

Use of the fields below may vary by implementation. Comments give intended use.

Used as response type in: grpc.WorkerService.RecvBuf

message RecvTensorRequest

worker.proto:307

Used as request type in: grpc.WorkerService.RecvTensor

message RecvTensorResponse

worker.proto:344

Used as response type in: grpc.WorkerService.RecvTensor

message RegisterGraphRequest

worker.proto:104

Used as request type in: grpc.WorkerService.RegisterGraph

message RegisterGraphResponse

worker.proto:135

Used as response type in: grpc.WorkerService.RegisterGraph

message ReleaseCallableRequest

master.proto:323

Used as request type in: grpc.MasterService.ReleaseCallable

Used as field type in: ReplayOp

message ReleaseCallableResponse

master.proto:333

Used as response type in: grpc.MasterService.ReleaseCallable

Used as field type in: ReplayOp

(message has no fields)

message RemoteFusedGraphExecuteInfo

remote_fused_graph_execute_info.proto:16

Protocol buffer representing a handle to a tensorflow resource. Handles are not valid across executions, but can be serialized back and forth from within a single run.

message RemoteFusedGraphExecuteInfo.TensorShapeTypeProto

remote_fused_graph_execute_info.proto:18

Used in: RemoteFusedGraphExecuteInfo

message ReplayOp

replay_log.proto:17

message ResetRequest

master.proto:224

Reset() allows misbehaving or slow sessions to be aborted and closed, and causes their resources eventually to be released. Reset() does not wait for the computations in old sessions to cease; it merely starts the process of tearing them down. However, if a new session is started after a Reset(), the new session is isolated from changes that old sessions (started prior to the Reset()) may continue to make to resources, provided all those resources are in containers listed in "containers". Old sessions may continue to have side-effects on resources not in containers listed in "containers", and thus may affect future sessions' results in ways that are hard to predict. Thus, if well-defined behavior is desired, is it recommended that all containers be listed in "containers". Similarly, if a device_filter is specified, results may be hard to predict.

Used as request type in: grpc.MasterService.Reset

Used as field type in: ReplayOp

message ResetResponse

master.proto:240

Used as response type in: grpc.MasterService.Reset

Used as field type in: ReplayOp

(message has no fields)

message ResourceHandleProto

resource_handle.proto:13

Protocol buffer representing a handle to a tensorflow resource. Handles are not valid across executions, but can be serialized back and forth from within a single run.

Used in: TensorProto

message RewriterConfig

rewriter_config.proto:22

Graph rewriting is experimental and subject to change, not covered by any API stability guarantees.

Used in: GraphOptions

message RewriterConfig.CustomGraphOptimizer

rewriter_config.proto:162

Message to describe custom graph optimizer and its parameters

Used in: RewriterConfig

enum RewriterConfig.MemOptType

rewriter_config.proto:93

Used in: RewriterConfig

enum RewriterConfig.NumIterationsType

rewriter_config.proto:42

Enum controlling the number of times to run optimizers. The default is to run them twice.

Used in: RewriterConfig

enum RewriterConfig.Toggle

rewriter_config.proto:30

Used in: RewriterConfig

message RunCallableRequest

master.proto:295

Used as request type in: grpc.MasterService.RunCallable

Used as field type in: ReplayOp

message RunCallableResponse

master.proto:308

Used as response type in: grpc.MasterService.RunCallable

Used as field type in: ReplayOp

message RunGraphRequest

worker.proto:212

Used as request type in: grpc.WorkerService.RunGraph

message RunGraphResponse

worker.proto:259

Used as response type in: grpc.WorkerService.RunGraph

message RunMetadata

config.proto:494

Metadata output (i.e., non-Tensor) for a single Run() call.

Used in: RunCallableResponse, RunStepResponse, serving.SessionRunResponse

message RunOptions

config.proto:436

Options for a single Run() call.

Used in: CallableOptions, RunStepRequest, serving.SessionRunRequest

message RunOptions.Experimental

config.proto:475

Everything inside Experimental is subject to change and is not subject to API stability guarantees in https://www.tensorflow.org/guide/version_compat.

Used in: RunOptions

enum RunOptions.TraceLevel

config.proto:439

TODO(pbar) Turn this into a TraceOptions proto which allows tracing to be controlled in a more orthogonal manner?

Used in: RunOptions

message RunStepRequest

master.proto:111

Used as request type in: grpc.MasterService.RunStep

Used as field type in: ReplayOp

message RunStepResponse

master.proto:143

Used as response type in: grpc.MasterService.RunStep

Used as field type in: ReplayOp

message SaveSliceInfoDef

variable.proto:34

Used in: VariableDef

message SavedModel

saved_model.proto:13

SavedModel is the high level serialization format for TensorFlow Models. See [todo: doc links, similar to session_bundle] for more information.

message SaverDef

saver.proto:11

Protocol buffer representing the configuration of a Saver.

Used in: MetaGraphDef

enum SaverDef.CheckpointFormatVersion

saver.proto:38

A version number that identifies a different on-disk checkpoint format. Usually, each subclass of BaseSaverBuilder works with a particular version/format. However, it is possible that the same builder may be upgraded to support a newer checkpoint format in the future.

Used in: SaverDef

message ScopedAllocatorOptions

rewriter_config.proto:17

Used in: RewriterConfig

message SequenceExample

example.proto:298

message ServerDef

tensorflow_server.proto:28

Defines the configuration of a single TensorFlow server.

Used in: CreateWorkerSessionRequest, eager.CreateContextRequest

message SignatureDef

meta_graph.proto:297

SignatureDef defines the signature of a computation supported by a TensorFlow graph. For example, a model with two loss computations, sharing a single input, might have the following signature_def map. Note that across the two SignatureDefs "loss_A" and "loss_B", the input key, output key, and method_name are identical, and will be used by system(s) that implement or rely upon this particular loss method. The output tensor names differ, demonstrating how different outputs can exist for the same method. signature_def { key: "loss_A" value { inputs { key: "input" value { name: "input:0" dtype: DT_STRING tensor_shape: ... } } outputs { key: "loss_output" value { name: "loss_output_A:0" dtype: DT_FLOAT tensor_shape: ... } } } ... method_name: "some/package/compute_loss" } signature_def { key: "loss_B" value { inputs { key: "input" value { name: "input:0" dtype: DT_STRING tensor_shape: ... } } outputs { key: "loss_output" value { name: "loss_output_B:0" dtype: DT_FLOAT tensor_shape: ... } } } ... method_name: "some/package/compute_loss" }

Used in: MetaGraphDef, serving.SignatureDefMap

message StepSequence

worker.proto:547

Used in: GetStepSequenceResponse

message StepStats

step_stats.proto:82

Used in: LabeledStepStats, RunGraphResponse, RunMetadata

message Summary

summary.proto:64

A Summary is a set of named values to be displayed by the visualizer. Summaries are produced regularly during training, as controlled by the "summary_interval_secs" attribute of the training operation. Summaries are also produced at the end of an evaluation.

message Summary.Audio

summary.proto:82

Used in: Value

message Summary.Image

summary.proto:65

Used in: Value

message Summary.Value

summary.proto:95

Used in: Summary

message SummaryDescription

summary.proto:12

Metadata associated with a series of Summary data

message SummaryMetadata

summary.proto:38

A SummaryMetadata encapsulates information on which plugins are able to make use of a certain summary value.

Used in: Summary.Value

message SummaryMetadata.PluginData

summary.proto:39

Used in: SummaryMetadata

message TensorConnection

config.proto:508

Defines a connection between two tensors in a `GraphDef`.

Used in: CallableOptions

message TensorDescription

tensor_description.proto:13

Used in: MemoryLogTensorAllocation, MemoryLogTensorOutput, NodeOutput

message TensorInfo

meta_graph.proto:208

Information about a Tensor necessary for feeding or retrieval.

Used in: AssetFileDef, SignatureDef

message TensorInfo.CooSparse

meta_graph.proto:211

For sparse tensors, The COO encoding stores a triple of values, indices, and shape.

Used in: TensorInfo

message TensorProto

tensor.proto:14

Protocol buffer representing a tensor.

Used in: AttrValue, AttrValue.ListValue, FixedLenFeatureProto, NamedTensorProto, RecvTensorResponse, RunCallableRequest, RunCallableResponse, Summary.Value, VariantTensorDataProto, eager.SendTensorRequest, serving.PredictRequest, serving.PredictResponse

message TensorShapeProto

tensor_shape.proto:13

Dimensions of a tensor.

Used in: AttrValue, AttrValue.ListValue, BundleEntryProto, CompleteInstanceRequest, CostGraphDef.Node.OutputInfo, FixedLenFeatureProto, RemoteFusedGraphExecuteInfo.TensorShapeTypeProto, TensorDescription, TensorInfo, TensorProto, eager.QueueResponse

message TensorShapeProto.Dim

tensor_shape.proto:15

One dimension of the tensor.

Used in: TensorShapeProto

message TensorSliceProto

tensor_slice.proto:13

Can only be interpreted if you know the corresponding TensorShape.

Used in: BundleEntryProto

message TensorSliceProto.Extent

tensor_slice.proto:15

Extent of the slice in one dimension.

Either both or no attributes must be set. When no attribute is set means: All data in that dimension.

Used in: TensorSliceProto

message ThreadPoolOptionProto

config.proto:262

Used in: ConfigProto

message TraceOpts

worker.proto:405

Used in: TracingRequest

message TracingRequest

worker.proto:423

Out-of-band request to configure distributed tracing.

Used as request type in: grpc.WorkerService.Tracing

message TracingResponse

worker.proto:427

Used as response type in: grpc.WorkerService.Tracing

(message has no fields)

message ValuesDef

control_flow.proto:13

Protocol buffer representing the values in ControlFlowContext.

Used in: CondContextDef, WhileContextDef

message VarLenFeatureProto

example_parser_configuration.proto:16

Used in: FeatureConfiguration

message VariableDef

variable.proto:11

Protocol buffer representing a Variable.

message VariantTensorDataProto

tensor.proto:87

Protocol buffer representing the serialization format of DT_VARIANT tensors.

Used in: TensorProto

message VersionDef

versions.proto:23

Version information for a piece of serialized data There are different types of versions for each type of data (GraphDef, etc.), but they all have the same common shape described here. Each consumer has "consumer" and "min_producer" versions (specified elsewhere). A consumer is allowed to consume this data if producer >= min_producer consumer >= min_consumer consumer not in bad_consumers

Used in: BundleHeaderProto, GraphDef, eager.CreateContextRequest

message WhileContextDef

control_flow.proto:52

Protocol buffer representing a WhileContext object.

Used in: ControlFlowContextDef