public interface EventOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getFileVersion()
An event file was started, with the specified version.
|
com.google.protobuf.ByteString |
getFileVersionBytes()
An event file was started, with the specified version.
|
com.google.protobuf.ByteString |
getGraphDef()
An encoded version of a GraphDef.
|
LogMessage |
getLogMessage()
The user output a log message.
|
LogMessageOrBuilder |
getLogMessageOrBuilder()
The user output a log message.
|
com.google.protobuf.ByteString |
getMetaGraphDef()
An encoded version of a MetaGraphDef.
|
SessionLog |
getSessionLog()
The state of the session which can be used for restarting after crashes.
|
SessionLogOrBuilder |
getSessionLogOrBuilder()
The state of the session which can be used for restarting after crashes.
|
long |
getStep()
Global step of the event.
|
Summary |
getSummary()
A summary was generated.
|
SummaryOrBuilder |
getSummaryOrBuilder()
A summary was generated.
|
TaggedRunMetadata |
getTaggedRunMetadata()
The metadata returned by running a session.run() call.
|
TaggedRunMetadataOrBuilder |
getTaggedRunMetadataOrBuilder()
The metadata returned by running a session.run() call.
|
double |
getWallTime()
Timestamp of the event.
|
Event.WhatCase |
getWhatCase() |
boolean |
hasLogMessage()
The user output a log message.
|
boolean |
hasSessionLog()
The state of the session which can be used for restarting after crashes.
|
boolean |
hasSummary()
A summary was generated.
|
boolean |
hasTaggedRunMetadata()
The metadata returned by running a session.run() call.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
double getWallTime()
Timestamp of the event.
double wall_time = 1;
long getStep()
Global step of the event.
int64 step = 2;
String getFileVersion()
An event file was started, with the specified version. This is use to identify the contents of the record IO files easily. Current version is "brain.Event:2". All versions start with "brain.Event:".
string file_version = 3;
com.google.protobuf.ByteString getFileVersionBytes()
An event file was started, with the specified version. This is use to identify the contents of the record IO files easily. Current version is "brain.Event:2". All versions start with "brain.Event:".
string file_version = 3;
com.google.protobuf.ByteString getGraphDef()
An encoded version of a GraphDef.
bytes graph_def = 4;
boolean hasSummary()
A summary was generated.
.tensorflow.Summary summary = 5;
Summary getSummary()
A summary was generated.
.tensorflow.Summary summary = 5;
SummaryOrBuilder getSummaryOrBuilder()
A summary was generated.
.tensorflow.Summary summary = 5;
boolean hasLogMessage()
The user output a log message. Not all messages are logged, only ones generated via the Python tensorboard_logging module.
.tensorflow.LogMessage log_message = 6;
LogMessage getLogMessage()
The user output a log message. Not all messages are logged, only ones generated via the Python tensorboard_logging module.
.tensorflow.LogMessage log_message = 6;
LogMessageOrBuilder getLogMessageOrBuilder()
The user output a log message. Not all messages are logged, only ones generated via the Python tensorboard_logging module.
.tensorflow.LogMessage log_message = 6;
boolean hasSessionLog()
The state of the session which can be used for restarting after crashes.
.tensorflow.SessionLog session_log = 7;
SessionLog getSessionLog()
The state of the session which can be used for restarting after crashes.
.tensorflow.SessionLog session_log = 7;
SessionLogOrBuilder getSessionLogOrBuilder()
The state of the session which can be used for restarting after crashes.
.tensorflow.SessionLog session_log = 7;
boolean hasTaggedRunMetadata()
The metadata returned by running a session.run() call.
.tensorflow.TaggedRunMetadata tagged_run_metadata = 8;
TaggedRunMetadata getTaggedRunMetadata()
The metadata returned by running a session.run() call.
.tensorflow.TaggedRunMetadata tagged_run_metadata = 8;
TaggedRunMetadataOrBuilder getTaggedRunMetadataOrBuilder()
The metadata returned by running a session.run() call.
.tensorflow.TaggedRunMetadata tagged_run_metadata = 8;
com.google.protobuf.ByteString getMetaGraphDef()
An encoded version of a MetaGraphDef.
bytes meta_graph_def = 9;
Event.WhatCase getWhatCase()
Copyright © 2015–2018. All rights reserved.