aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/event.proto
blob: 5d67823ce766600da8cf6ef86148cf7cbb0ad880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
syntax = "proto3";

package tensorflow;
// option cc_enable_arenas = true;

import "tensorflow/core/framework/graph.proto";
import "tensorflow/core/framework/summary.proto";

// Protocol buffer representing an event that happened during
// the execution of a Brain model.
message Event {
  // Timestamp of the event.
  double wall_time = 1;

  // Globale step of the event.
  int64 step = 2;

  oneof what {
    // 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 "tensorflow.Event:1".  All versions
    // start with "tensorflow.Event:".
    string file_version = 3;
    // A model was constructed.
    GraphDef graph_def = 4;
    // A summary was generated.
    Summary summary = 5;
  }
}