NodeDef.ExperimentalDebugInfo.Builder

NodeDef.ExperimentalDebugInfo.Builder คลาสสุดท้ายแบบคงที่สาธารณะ

Protobuf ประเภท tensorflow.NodeDef.ExperimentalDebugInfo

วิธีการสาธารณะ

NodeDef.ExperimentalDebugInfo.Builder
addAllOriginalFuncNames (ค่า <String> ที่สามารถทำซ้ำได้)
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
NodeDef.ExperimentalDebugInfo.Builder
addAllOriginalNodeNames (ค่า Iterable<String>)
 Opaque string inserted into error messages created by the runtime.
NodeDef.ExperimentalDebugInfo.Builder
addOriginalFuncNames (ค่าสตริง)
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
NodeDef.ExperimentalDebugInfo.Builder
addOriginalFuncNamesBytes (ค่า com.google.protobuf.ByteString)
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
NodeDef.ExperimentalDebugInfo.Builder
addOriginalNodeNames (ค่าสตริง)
 Opaque string inserted into error messages created by the runtime.
NodeDef.ExperimentalDebugInfo.Builder
addOriginalNodeNamesBytes (ค่า com.google.protobuf.ByteString)
 Opaque string inserted into error messages created by the runtime.
NodeDef.ExperimentalDebugInfo.Builder
addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ช่อง ค่าอ็อบเจ็กต์)
NodeDef.ExperimentalDebugInfo
NodeDef.ExperimentalDebugInfo
NodeDef.ExperimentalDebugInfo.Builder
NodeDef.ExperimentalDebugInfo.Builder
clearField (ฟิลด์ com.google.protobuf.Descriptors.FieldDescriptor)
NodeDef.ExperimentalDebugInfo.Builder
clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)
NodeDef.ExperimentalDebugInfo.Builder
clearOriginalFuncNames ()
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
NodeDef.ExperimentalDebugInfo.Builder
clearOriginalNodeNames ()
 Opaque string inserted into error messages created by the runtime.
NodeDef.ExperimentalDebugInfo.Builder
NodeDef.ExperimentalDebugInfo
com.google.protobuf.Descriptors.Descriptor แบบคงที่ขั้นสุดท้าย
com.google.protobuf.Descriptors.Descriptor
สตริง
getOriginalFuncNames (ดัชนี int)
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
com.google.protobuf.ByteString
getOriginalFuncNamesBytes (ดัชนี int)
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
ภายใน
getOriginalFuncNamesCount ()
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
com.google.protobuf.ProtocolStringList
getOriginalFuncNamesList ()
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
สตริง
getOriginalNodeNames (ดัชนี int)
 Opaque string inserted into error messages created by the runtime.
com.google.protobuf.ByteString
getOriginalNodeNamesBytes (ดัชนี int)
 Opaque string inserted into error messages created by the runtime.
ภายใน
getOriginalNodeNamesCount ()
 Opaque string inserted into error messages created by the runtime.
com.google.protobuf.ProtocolStringList
getOriginalNodeNamesList ()
 Opaque string inserted into error messages created by the runtime.
บูลีนสุดท้าย
NodeDef.ExperimentalDebugInfo.Builder
mergeFrom (com.google.protobuf.CodedInputStream อินพุต com.google.protobuf.ExtensionRegistryLite extensionRegistry)
NodeDef.ExperimentalDebugInfo.Builder
mergeFrom (com.google.protobuf.ข้อความ อื่น ๆ )
NodeDef.ExperimentalDebugInfo.Builder สุดท้าย
mergeUnknownFields (com.google.protobuf.UnknownFieldSetknownFields)
NodeDef.ExperimentalDebugInfo.Builder
setField (ฟิลด์ com.google.protobuf.Descriptors.FieldDescriptor ค่าอ็อบเจ็กต์)
NodeDef.ExperimentalDebugInfo.Builder
setOriginalFuncNames (ดัชนี int, ค่าสตริง)
 This is intended to store the list of names of the functions from the
 original graph that this node was derived.
NodeDef.ExperimentalDebugInfo.Builder
setOriginalNodeNames (ดัชนี int, ค่าสตริง)
 Opaque string inserted into error messages created by the runtime.
NodeDef.ExperimentalDebugInfo.Builder
setRepeatedField (ฟิลด์ com.google.protobuf.Descriptors.FieldDescriptor, ดัชนี int, ค่าอ็อบเจ็กต์)
NodeDef.ExperimentalDebugInfo.Builder สุดท้าย
setUnknownFields (com.google.protobuf.UnknownFieldSetknownFields)

วิธีการสืบทอด

วิธีการสาธารณะ

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ addAllOriginalFuncNames (ค่า Iterable <String>)

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ addAllOriginalNodeNames (ค่า Iterable <String>)

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ addOriginalFuncNames (ค่าสตริง)

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ addOriginalFuncNamesBytes (ค่า com.google.protobuf.ByteString)

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ addOriginalNodeNames (ค่าสตริง)

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ addOriginalNodeNamesBytes (ค่า com.google.protobuf.ByteString)

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

สาธารณะ NodeDef.ExperimentalDebugInfo.Builder addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ฟิลด์ ค่าอ็อบเจ็กต์)

NodeDef.ExperimentalDebugInfo สาธารณะ build ()

NodeDef.ExperimentalDebugInfo สาธารณะ buildPartial ()

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ ชัดเจน ()

NodeDef.ExperimentalDebugInfo.Builder clearField สาธารณะ (ฟิลด์ com.google.protobuf.Descriptors.FieldDescriptor)

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ clearOriginalFuncNames ()

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ clearOriginalNodeNames ()

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

NodeDef.ExperimentalDebugInfo.Builder โคลน สาธารณะ ()

NodeDef.ExperimentalDebugInfo สาธารณะ getDefaultInstanceForType ()

สาธารณะคงที่สุดท้าย com.google.protobuf.Descriptors.Descriptor getDescriptor ()

สาธารณะ com.google.protobuf.Descriptors.Descriptor getDescriptorForType ()

สตริงสาธารณะ getOriginalFuncNames (ดัชนี int)

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

สาธารณะ com.google.protobuf.ByteString getOriginalFuncNamesBytes (ดัชนี int)

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

สาธารณะ int getOriginalFuncNamesCount ()

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

สาธารณะ com.google.protobuf.ProtocolStringList getOriginalFuncNamesList ()

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

สตริงสาธารณะ getOriginalNodeNames (ดัชนี int)

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

สาธารณะ com.google.protobuf.ByteString getOriginalNodeNamesBytes (ดัชนี int)

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

int สาธารณะ getOriginalNodeNamesCount ()

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

สาธารณะ com.google.protobuf.ProtocolStringList getOriginalNodeNamesList ()

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

บูลีนสุดท้ายสาธารณะ isInitialized ()

NodeDef.ExperimentalDebugInfo.Builder ผสานจาก สาธารณะ (com.google.protobuf.CodedInputStream อินพุต com.google.protobuf.ExtensionRegistryLite extensionRegistry)

ขว้าง
IOข้อยกเว้น

สาธารณะ NodeDef.ExperimentalDebugInfo.Builder ผสานจาก (com.google.protobuf.Message อื่น ๆ )

NodeDef.ExperimentalDebugInfo.Builder สาธารณะขั้นสุดท้าย ผสาน UnknownFields (com.google.protobuf.UnknownFieldSetknownFields)

สาธารณะ NodeDef.ExperimentalDebugInfo.Builder setField (ฟิลด์ com.google.protobuf.Descriptors.FieldDescriptor ค่าอ็อบเจ็กต์)

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ setOriginalFuncNames (ดัชนี int ค่าสตริง)

 This is intended to store the list of names of the functions from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of node A in function FA and node B in function
 FB, then `original_funcs` would be {FA, FB}. If the node is in the top
 level graph, the `original_func` is empty. This information, with the
 `original_node_names` can be used to map errors originating at the
 current ndoe to some top level source code.
 
repeated string original_func_names = 2;

NodeDef.ExperimentalDebugInfo.Builder สาธารณะ setOriginalNodeNames (ดัชนี int, ค่าสตริง)

 Opaque string inserted into error messages created by the runtime.
 This is intended to store the list of names of the nodes from the
 original graph that this node was derived. For example if this node, say
 C, was result of a fusion of 2 nodes A and B, then 'original_node' would
 be {A, B}. This information can be used to map errors originating at the
 current node to some top level source code.
 
repeated string original_node_names = 1;

สาธารณะ NodeDef.ExperimentalDebugInfo.Builder setRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ฟิลด์ ดัชนี int ค่าอ็อบเจ็กต์)

NodeDef.ExperimentalDebugInfo.Builder setUnknownFields สาธารณะสุดท้าย (com.google.protobuf.UnknownFieldSetknownFields)