Interface EventOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Event, Event.Builder

    public interface EventOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • getWallTime

        double getWallTime()
         Timestamp of the event.
         
        double wall_time = 1;
        Returns:
        The wallTime.
      • getStep

        long getStep()
         Global step of the event.
         
        int64 step = 2;
        Returns:
        The step.
      • getFileVersion

        java.lang.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;
        Returns:
        The fileVersion.
      • getFileVersionBytes

        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;
        Returns:
        The bytes for fileVersion.
      • getGraphDef

        com.google.protobuf.ByteString getGraphDef()
         An encoded version of a GraphDef.
         
        bytes graph_def = 4;
        Returns:
        The graphDef.
      • hasSummary

        boolean hasSummary()
         A summary was generated.
         
        .org.platanios.tensorflow.proto.Summary summary = 5;
        Returns:
        Whether the summary field is set.
      • getSummary

        Summary getSummary()
         A summary was generated.
         
        .org.platanios.tensorflow.proto.Summary summary = 5;
        Returns:
        The summary.
      • getSummaryOrBuilder

        SummaryOrBuilder getSummaryOrBuilder()
         A summary was generated.
         
        .org.platanios.tensorflow.proto.Summary summary = 5;
      • hasLogMessage

        boolean hasLogMessage()
         The user output a log message. Not all messages are logged, only ones
         generated via the Python tensorboard_logging module.
         
        .org.platanios.tensorflow.proto.LogMessage log_message = 6;
        Returns:
        Whether the logMessage field is set.
      • getLogMessage

        LogMessage getLogMessage()
         The user output a log message. Not all messages are logged, only ones
         generated via the Python tensorboard_logging module.
         
        .org.platanios.tensorflow.proto.LogMessage log_message = 6;
        Returns:
        The logMessage.
      • getLogMessageOrBuilder

        LogMessageOrBuilder getLogMessageOrBuilder()
         The user output a log message. Not all messages are logged, only ones
         generated via the Python tensorboard_logging module.
         
        .org.platanios.tensorflow.proto.LogMessage log_message = 6;
      • hasSessionLog

        boolean hasSessionLog()
         The state of the session which can be used for restarting after crashes.
         
        .org.platanios.tensorflow.proto.SessionLog session_log = 7;
        Returns:
        Whether the sessionLog field is set.
      • getSessionLog

        SessionLog getSessionLog()
         The state of the session which can be used for restarting after crashes.
         
        .org.platanios.tensorflow.proto.SessionLog session_log = 7;
        Returns:
        The sessionLog.
      • getSessionLogOrBuilder

        SessionLogOrBuilder getSessionLogOrBuilder()
         The state of the session which can be used for restarting after crashes.
         
        .org.platanios.tensorflow.proto.SessionLog session_log = 7;
      • hasTaggedRunMetadata

        boolean hasTaggedRunMetadata()
         The metadata returned by running a session.run() call.
         
        .org.platanios.tensorflow.proto.TaggedRunMetadata tagged_run_metadata = 8;
        Returns:
        Whether the taggedRunMetadata field is set.
      • getTaggedRunMetadata

        TaggedRunMetadata getTaggedRunMetadata()
         The metadata returned by running a session.run() call.
         
        .org.platanios.tensorflow.proto.TaggedRunMetadata tagged_run_metadata = 8;
        Returns:
        The taggedRunMetadata.
      • getTaggedRunMetadataOrBuilder

        TaggedRunMetadataOrBuilder getTaggedRunMetadataOrBuilder()
         The metadata returned by running a session.run() call.
         
        .org.platanios.tensorflow.proto.TaggedRunMetadata tagged_run_metadata = 8;
      • getMetaGraphDef

        com.google.protobuf.ByteString getMetaGraphDef()
         An encoded version of a MetaGraphDef.
         
        bytes meta_graph_def = 9;
        Returns:
        The metaGraphDef.