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