MetaGraphDef.MetaInfoDefOrBuilder

antarmuka statis publik MetaGraphDef.MetaInfoDefOrBuilder
Subkelas Tidak Langsung yang Diketahui

Metode Publik

boolean abstrak
berisiFunctionAliases (kunci string)
 FunctionDef name to aliases mapping.
abstrak com.google.protobuf.Any
dapatkanInfo Apa Pun ()
 A serialized protobuf.
abstrak com.google.protobuf.AnyOrBuilder
dapatkanAnyInfoOrBuilder ()
 A serialized protobuf.
peta abstrak<String, String>
dapatkanFunctionAliases ()
Gunakan getFunctionAliasesMap() sebagai gantinya.
abstrak ke dalam
dapatkanFunctionAliasesCount ()
 FunctionDef name to aliases mapping.
peta abstrak<String, String>
dapatkanFunctionAliasesMap ()
 FunctionDef name to aliases mapping.
Tali abstrak
getFunctionAliasesOrDefault (kunci string, String defaultValue)
 FunctionDef name to aliases mapping.
Tali abstrak
getFunctionAliasesOrThrow (kunci string)
 FunctionDef name to aliases mapping.
Tali abstrak
dapatkanMetaGraphVersion ()
 User specified Version string.
abstrak com.google.protobuf.ByteString
dapatkanMetaGraphVersionBytes ()
 User specified Version string.
boolean abstrak
dapatkanStrippedDefaultAttrs ()
 A flag to denote whether default-valued attrs have been stripped from
 the nodes in this graph_def.
Daftar Op abstrak
dapatkanStrippedOpList ()
 A copy of the OpDefs used by the producer of this graph_def.
abstrak OpListOrBuilder
dapatkanStrippedOpListOrBuilder ()
 A copy of the OpDefs used by the producer of this graph_def.
Tali abstrak
getTags (indeks int)
 User supplied tag(s) on the meta_graph and included graph_def.
abstrak com.google.protobuf.ByteString
getTagsBytes (indeks int)
 User supplied tag(s) on the meta_graph and included graph_def.
abstrak ke dalam
dapatkanTagsCount ()
 User supplied tag(s) on the meta_graph and included graph_def.
Daftar abstrak<String>
dapatkanTagsList ()
 User supplied tag(s) on the meta_graph and included graph_def.
Tali abstrak
dapatkanTensorflowGitVersion ()
 The __git_version__ string of the tensorflow build used to write this
 graph.
abstrak com.google.protobuf.ByteString
getTensorflowGitVersionBytes ()
 The __git_version__ string of the tensorflow build used to write this
 graph.
Tali abstrak
dapatkanTensorflowVersion ()
 The __version__ string of the tensorflow build used to write this graph.
abstrak com.google.protobuf.ByteString
dapatkanTensorflowVersionBytes ()
 The __version__ string of the tensorflow build used to write this graph.
boolean abstrak
memilikiInfo Apa Pun ()
 A serialized protobuf.
boolean abstrak
hasStrippedOpList ()
 A copy of the OpDefs used by the producer of this graph_def.

Metode Publik

boolean abstrak publik berisiFunctionAliases (kunci String)

 FunctionDef name to aliases mapping.
 
map<string, string> function_aliases = 8;

abstrak publik com.google.protobuf.Any getAnyInfo ()

 A serialized protobuf. Can be the time this meta graph is created, or
 modified, or name of the model.
 
.google.protobuf.Any any_info = 3;

abstrak publik com.google.protobuf.AnyOrBuilder getAnyInfoOrBuilder ()

 A serialized protobuf. Can be the time this meta graph is created, or
 modified, or name of the model.
 
.google.protobuf.Any any_info = 3;

peta abstrak publik<String, String> getFunctionAliases ()

Gunakan getFunctionAliasesMap() sebagai gantinya.

abstrak publik int getFunctionAliasesCount ()

 FunctionDef name to aliases mapping.
 
map<string, string> function_aliases = 8;

peta abstrak publik<String, String> getFunctionAliasesMap ()

 FunctionDef name to aliases mapping.
 
map<string, string> function_aliases = 8;

abstrak publik String getFunctionAliasesOrDefault (kunci string, String defaultValue)

 FunctionDef name to aliases mapping.
 
map<string, string> function_aliases = 8;

abstrak publik String getFunctionAliasesOrThrow (kunci string)

 FunctionDef name to aliases mapping.
 
map<string, string> function_aliases = 8;

String abstrak publik getMetaGraphVersion ()

 User specified Version string. Can be the name of the model and revision,
 steps this model has been trained to, etc.
 
string meta_graph_version = 1;

abstrak publik com.google.protobuf.ByteString getMetaGraphVersionBytes ()

 User specified Version string. Can be the name of the model and revision,
 steps this model has been trained to, etc.
 
string meta_graph_version = 1;

boolean abstrak publik getStrippedDefaultAttrs ()

 A flag to denote whether default-valued attrs have been stripped from
 the nodes in this graph_def.
 
bool stripped_default_attrs = 7;

OpList abstrak publik getStrippedOpList ()

 A copy of the OpDefs used by the producer of this graph_def.
 Descriptions and Ops not used in graph_def are stripped out.
 
.tensorflow.OpList stripped_op_list = 2;

abstrak publik OpListOrBuilder getStrippedOpListOrBuilder ()

 A copy of the OpDefs used by the producer of this graph_def.
 Descriptions and Ops not used in graph_def are stripped out.
 
.tensorflow.OpList stripped_op_list = 2;

getTags String abstrak publik (indeks int)

 User supplied tag(s) on the meta_graph and included graph_def.
 MetaGraphDefs should be tagged with their capabilities or use-cases.
 Examples: "train", "serve", "gpu", "tpu", etc.
 These tags enable loaders to access the MetaGraph(s) appropriate for a
 specific use-case or runtime environment.
 
repeated string tags = 4;

abstrak publik com.google.protobuf.ByteString getTagsBytes (indeks int)

 User supplied tag(s) on the meta_graph and included graph_def.
 MetaGraphDefs should be tagged with their capabilities or use-cases.
 Examples: "train", "serve", "gpu", "tpu", etc.
 These tags enable loaders to access the MetaGraph(s) appropriate for a
 specific use-case or runtime environment.
 
repeated string tags = 4;

abstrak publik int getTagsCount ()

 User supplied tag(s) on the meta_graph and included graph_def.
 MetaGraphDefs should be tagged with their capabilities or use-cases.
 Examples: "train", "serve", "gpu", "tpu", etc.
 These tags enable loaders to access the MetaGraph(s) appropriate for a
 specific use-case or runtime environment.
 
repeated string tags = 4;

Daftar abstrak publik<String> getTagsList ()

 User supplied tag(s) on the meta_graph and included graph_def.
 MetaGraphDefs should be tagged with their capabilities or use-cases.
 Examples: "train", "serve", "gpu", "tpu", etc.
 These tags enable loaders to access the MetaGraph(s) appropriate for a
 specific use-case or runtime environment.
 
repeated string tags = 4;

String abstrak publik getTensorflowGitVersion ()

 The __git_version__ string of the tensorflow build used to write this
 graph. This will be populated by the framework, which will overwrite any
 user supplied value.
 
string tensorflow_git_version = 6;

abstrak publik com.google.protobuf.ByteString getTensorflowGitVersionBytes ()

 The __git_version__ string of the tensorflow build used to write this
 graph. This will be populated by the framework, which will overwrite any
 user supplied value.
 
string tensorflow_git_version = 6;

String abstrak publik getTensorflowVersion ()

 The __version__ string of the tensorflow build used to write this graph.
 This will be populated by the framework, which will overwrite any user
 supplied value.
 
string tensorflow_version = 5;

abstrak publik com.google.protobuf.ByteString getTensorflowVersionBytes ()

 The __version__ string of the tensorflow build used to write this graph.
 This will be populated by the framework, which will overwrite any user
 supplied value.
 
string tensorflow_version = 5;

boolean abstrak publik hasAnyInfo ()

 A serialized protobuf. Can be the time this meta graph is created, or
 modified, or name of the model.
 
.google.protobuf.Any any_info = 3;

boolean abstrak publik hasStrippedOpList ()

 A copy of the OpDefs used by the producer of this graph_def.
 Descriptions and Ops not used in graph_def are stripped out.
 
.tensorflow.OpList stripped_op_list = 2;