• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package tensorflow;
4option cc_enable_arenas = true;
5option java_outer_classname = "SavedModelProtos";
6option java_multiple_files = true;
7option java_package = "org.tensorflow.framework";
8option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/protobuf";
9import "tensorflow/core/protobuf/meta_graph.proto";
10
11// SavedModel is the high level serialization format for TensorFlow Models.
12// See [todo: doc links, similar to session_bundle] for more information.
13message SavedModel {
14  // The schema version of the SavedModel instance. Used for versioning when
15  // making future changes to the specification/implementation. Initial value
16  // at release will be 1.
17  int64 saved_model_schema_version = 1;
18
19  // One or more MetaGraphs.
20  repeated MetaGraphDef meta_graphs = 2;
21}
22