MetaGraphDef.MetaInfoDefOrBuilder

공개 정적 인터페이스 MetaGraphDef.MetaInfoDefOrBuilder
알려진 간접 하위 클래스

공개 방법

추상 부울
containFunctionAliases (문자열 키)
 FunctionDef name to aliases mapping.
추상 com.google.protobuf.Any
getAnyInfo ()
 A serialized protobuf.
추상 com.google.protobuf.AnyOrBuilder
getAnyInfoOrBuilder ()
 A serialized protobuf.
추상 맵<문자열, 문자열>
getFunctionAliases ()
대신 getFunctionAliasesMap() 사용하세요.
추상 정수
getFunctionAliasesCount ()
 FunctionDef name to aliases mapping.
추상 맵<문자열, 문자열>
getFunctionAliasesMap ()
 FunctionDef name to aliases mapping.
추상 문자열
getFunctionAliasesOrDefault (문자열 키, 문자열 defaultValue)
 FunctionDef name to aliases mapping.
추상 문자열
getFunctionAliasesOrThrow (문자열 키)
 FunctionDef name to aliases mapping.
추상 문자열
getMetaGraphVersion ()
 User specified Version string.
추상 com.google.protobuf.ByteString
getMetaGraphVersionBytes ()
 User specified Version string.
추상 부울
getStrippedDefaultAttrs ()
 A flag to denote whether default-valued attrs have been stripped from
 the nodes in this graph_def.
추상 OpList
getStrippedOpList ()
 A copy of the OpDefs used by the producer of this graph_def.
추상 OpListOrBuilder
getStrippedOpListOrBuilder ()
 A copy of the OpDefs used by the producer of this graph_def.
추상 문자열
getTags (정수 인덱스)
 User supplied tag(s) on the meta_graph and included graph_def.
추상 com.google.protobuf.ByteString
getTagsBytes (정수 인덱스)
 User supplied tag(s) on the meta_graph and included graph_def.
추상 정수
getTagsCount ()
 User supplied tag(s) on the meta_graph and included graph_def.
추상 목록<문자열>
getTagsList ()
 User supplied tag(s) on the meta_graph and included graph_def.
추상 문자열
getTensorflowGitVersion ()
 The __git_version__ string of the tensorflow build used to write this
 graph.
추상 com.google.protobuf.ByteString
getTensorflowGitVersionBytes ()
 The __git_version__ string of the tensorflow build used to write this
 graph.
추상 문자열
getTensorflowVersion ()
 The __version__ string of the tensorflow build used to write this graph.
추상 com.google.protobuf.ByteString
getTensorflowVersionBytes ()
 The __version__ string of the tensorflow build used to write this graph.
추상 부울
hasAnyInfo ()
 A serialized protobuf.
추상 부울
hasStrippedOpList ()
 A copy of the OpDefs used by the producer of this graph_def.

공개 방법

공개 추상 부울 containFunctionAliases (문자열 키)

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

공개 추상 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;

공개 추상 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;

공개 추상 Map<String, String> getFunctionAliases ()

대신 getFunctionAliasesMap() 사용하세요.

공개 추상 int getFunctionAliasesCount ()

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

공개 추상 Map<String, String> getFunctionAliasesMap ()

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

공개 추상 문자열 getFunctionAliasesOrDefault (문자열 키, 문자열 defaultValue)

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

공개 추상 문자열 getFunctionAliasesOrThrow (문자열 키)

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

공개 추상 문자열 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;

공개 추상 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;

공개 추상 부울 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 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;

공개 추상 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 (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;

공개 추상 com.google.protobuf.ByteString getTagsBytes (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;

공개 추상 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;

공개 추상 List<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;

공개 추상 문자열 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;

공개 추상 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;

공개 추상 문자열 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;

공개 추상 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;

공개 추상 부울 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;

공개 추상 부울 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;