File size: 477 Bytes
5178306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syntax = "proto3";

package tensorflow;
option cc_enable_arenas = true;
option java_outer_classname = "IteratorProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.util";

// Protocol buffer representing the metadata for an iterator's state stored
// as a Variant tensor.
message IteratorStateMetadata {
  // A user-specified version string.
  string version = 1;

  // Keys for tensors in the VariantTensorDataProto.
  repeated string keys = 2;
}