パブリック静的最終クラスNodeDef.ExperimentalDebugInfo
Protobuf 型tensorflow.NodeDef.ExperimentalDebugInfo
ネストされたクラス
クラス | NodeDef.ExperimentalDebugInfo.Builder | Protobuf 型tensorflow.NodeDef.ExperimentalDebugInfo |
定数
整数 | ORIGINAL_FUNC_NAMES_FIELD_NUMBER | |
整数 | ORIGINAL_NODE_NAMES_FIELD_NUMBER |
パブリックメソッド
ブール値 | 等しい(オブジェクトオブジェクト) |
静的NodeDef.ExperimentalDebugInfo | |
NodeDef.ExperimentalDebugInfo | |
最終的な静的 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. |
整数 | |
最終的な com.google.protobuf.UnknownFieldSet | |
整数 | ハッシュコード() |
最終ブール値 | |
静的NodeDef.ExperimentalDebugInfo.Builder | newBuilder ( NodeDef.ExperimentalDebugInfoプロトタイプ) |
静的NodeDef.ExperimentalDebugInfo.Builder | newBuilder () |
NodeDef.ExperimentalDebugInfo.Builder | |
静的NodeDef.ExperimentalDebugInfo | parseDelimitedFrom (InputStream 入力) |
静的NodeDef.ExperimentalDebugInfo | parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (ByteBuffer データ) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (com.google.protobuf.CodedInputStream 入力) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (com.google.protobuf.ByteString データ) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的NodeDef.ExperimentalDebugInfo | parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
静的 | パーサー() |
NodeDef.ExperimentalDebugInfo.Builder | toビルダー() |
空所 | writeTo (com.google.protobuf.CodedOutputStream 出力) |
継承されたメソッド
定数
パブリック静的最終整数ORIGINAL_FUNC_NAMES_FIELD_NUMBER
定数値: 2
パブリック静的最終整数ORIGINAL_NODE_NAMES_FIELD_NUMBER
定数値: 1
パブリックメソッド
public booleanに等しい(オブジェクト obj)
public static Final com.google.protobuf.Descriptors.Descriptor getDescriptor ()
public String 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;
public 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;
public 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;
public 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;
public String 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;
public 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;
public 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;
public 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;
公共 getParserForType ()
public int getSerializedSize ()
public Final com.google.protobuf.UnknownFieldSet getUnknownFields ()
public int hashCode ()
パブリック最終ブール値isInitialized ()
public static NodeDef.ExperimentalDebugInfo.Builder newBuilder ( NodeDef.ExperimentalDebugInfoプロトタイプ)
public static NodeDef.ExperimentalDebugInfo parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
IO例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
IO例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
無効なプロトコルバッファ例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (com.google.protobuf.CodedInputStream 入力)
投げる
IO例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
無効なプロトコルバッファ例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (com.google.protobuf.ByteString データ)
投げる
無効なプロトコルバッファ例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
IO例外 |
---|
public static NodeDef.ExperimentalDebugInfo parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
投げる
無効なプロトコルバッファ例外 |
---|
パブリック静的 パーサー()
public void writeTo (com.google.protobuf.CodedOutputStream 出力)
投げる
IO例外 |
---|