DebugTensorWatch

パブリック最終クラスDebugTensorWatch

 Option for watching a node in TensorFlow Debugger (tfdbg).
 
Protobuf 型tensorflow.DebugTensorWatch

ネストされたクラス

クラスDebugTensorWatch.Builder
 Option for watching a node in TensorFlow Debugger (tfdbg). 

定数

整数DEBUG_OPS_FIELD_NUMBER
整数DEBUG_URLS_FIELD_NUMBER
整数NODE_NAME_FIELD_NUMBER
整数OUTPUT_SLOT_FIELD_NUMBER
整数TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

パブリックメソッド

ブール値
等しい(オブジェクトオブジェクト)
getDebugOps (int インデックス)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (int インデックス)
 Name(s) of the debugging op(s).
整数
getDebugOpsCount ()
 Name(s) of the debugging op(s).
com.google.protobuf.ProtocolStringList
getDebugOpsList ()
 Name(s) of the debugging op(s).
getDebugUrls (int インデックス)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (int インデックス)
 URL(s) for debug targets(s).
整数
getDebugUrlsCount ()
 URL(s) for debug targets(s).
com.google.protobuf.ProtocolStringList
getDebugUrlsList ()
 URL(s) for debug targets(s).
静的DebugTensorWatch
デバッグTensorWatch
最終的な静的 com.google.protobuf.Descriptors.Descriptor
getNodeName ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNodeNameBytes ()
 Name of the node to watch.
整数
getOutputSlot ()
 Output slot to watch.
整数
ブール値
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
最終的な com.google.protobuf.UnknownFieldSet
整数
最終ブール値
静的DebugTensorWatch.Builder
newBuilder ( DebugTensorWatchプロトタイプ)
静的DebugTensorWatch.Builder
DebugTensorWatch.Builder
静的DebugTensorWatch
parseDelimitedFrom (InputStream 入力)
静的DebugTensorWatch
parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (ByteBuffer データ)
静的DebugTensorWatch
parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (com.google.protobuf.CodedInputStream 入力)
静的DebugTensorWatch
parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (com.google.protobuf.ByteString データ)
静的DebugTensorWatch
parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的
DebugTensorWatch.Builder
空所
writeTo (com.google.protobuf.CodedOutputStream 出力)

継承されたメソッド

定数

パブリック静的最終整数DEBUG_OPS_FIELD_NUMBER

定数値: 3

パブリック静的最終整数DEBUG_URLS_FIELD_NUMBER

定数値: 4

パブリック静的最終整数NODE_NAME_FIELD_NUMBER

定数値: 1

パブリック静的最終整数OUTPUT_SLOT_FIELD_NUMBER

定数値: 2

public static Final int TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

定数値: 5

パブリックメソッド

public booleanに等しい(オブジェクト obj)

public String getDebugOps (int インデックス)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public com.google.protobuf.ByteString getDebugOpsBytes (int インデックス)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public int getDebugOpsCount ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public com.google.protobuf.ProtocolStringList getDebugOpsList ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public String getDebugUrls (int インデックス)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public com.google.protobuf.ByteString getDebugUrlsBytes (int インデックス)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public int getDebugUrlsCount ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public com.google.protobuf.ProtocolStringList getDebugUrlsList ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

パブリック静的DebugTensorWatch getDefaultInstance ()

public DebugTensorWatch getDefaultInstanceForType ()

public static Final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

パブリック String getNodeName ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public com.google.protobuf.ByteString getNodeNameBytes ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public int getOutputSlot ()

 Output slot to watch.
 The semantics of output_slot == -1 is that all outputs of the node
 will be watched (i.e., a wildcard).
 Other negative values of output_slot are invalid and will lead to
 errors currently.
 
int32 output_slot = 2;

公共getParserForType ()

public int getSerializedSize ()

public boolean getTolerateDebugOpCreationFailures ()

 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility). Instead, just log the failure.
 
bool tolerate_debug_op_creation_failures = 5;

public Final com.google.protobuf.UnknownFieldSet getUnknownFields ()

public int hashCode ()

パブリック最終ブール値isInitialized ()

public static DebugTensorWatch.Builder newBuilder ( DebugTensorWatchプロトタイプ)

public static DebugTensorWatch.Builder newBuilder ()

public DebugTensorWatch.Builder newBuilderForType ()

public static DebugTensorWatch parseDelimitedFrom (InputStream 入力)

投げる
IO例外

public static DebugTensorWatch parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static DebugTensorWatch parseFrom (ByteBuffer データ)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static DebugTensorWatch parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (com.google.protobuf.CodedInputStream 入力)

投げる
IO例外

public static DebugTensorWatch parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (com.google.protobuf.ByteString データ)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static DebugTensorWatch parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

パブリック静的パーサー()

public DebugTensorWatch.Builder toBuilder ()

public void writeTo (com.google.protobuf.CodedOutputStream 出力)

投げる
IO例外
パブリック最終クラスDebugTensorWatch

 Option for watching a node in TensorFlow Debugger (tfdbg).
 
Protobuf 型tensorflow.DebugTensorWatch

ネストされたクラス

クラスDebugTensorWatch.Builder
 Option for watching a node in TensorFlow Debugger (tfdbg). 

定数

整数DEBUG_OPS_FIELD_NUMBER
整数DEBUG_URLS_FIELD_NUMBER
整数NODE_NAME_FIELD_NUMBER
整数OUTPUT_SLOT_FIELD_NUMBER
整数TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

パブリックメソッド

ブール値
等しい(オブジェクトオブジェクト)
getDebugOps (int インデックス)
 Name(s) of the debugging op(s).
com.google.protobuf.ByteString
getDebugOpsBytes (int インデックス)
 Name(s) of the debugging op(s).
整数
getDebugOpsCount ()
 Name(s) of the debugging op(s).
com.google.protobuf.ProtocolStringList
getDebugOpsList ()
 Name(s) of the debugging op(s).
getDebugUrls (int インデックス)
 URL(s) for debug targets(s).
com.google.protobuf.ByteString
getDebugUrlsBytes (int インデックス)
 URL(s) for debug targets(s).
整数
getDebugUrlsCount ()
 URL(s) for debug targets(s).
com.google.protobuf.ProtocolStringList
getDebugUrlsList ()
 URL(s) for debug targets(s).
静的DebugTensorWatch
デバッグTensorWatch
最終的な静的 com.google.protobuf.Descriptors.Descriptor
getNodeName ()
 Name of the node to watch.
com.google.protobuf.ByteString
getNodeNameBytes ()
 Name of the node to watch.
整数
getOutputSlot ()
 Output slot to watch.
整数
ブール値
getTolerateDebugOpCreationFailures ()
 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility).
最終的な com.google.protobuf.UnknownFieldSet
整数
最終ブール値
静的DebugTensorWatch.Builder
newBuilder ( DebugTensorWatchプロトタイプ)
静的DebugTensorWatch.Builder
DebugTensorWatch.Builder
静的DebugTensorWatch
parseDelimitedFrom (InputStream 入力)
静的DebugTensorWatch
parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (ByteBuffer データ)
静的DebugTensorWatch
parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (com.google.protobuf.CodedInputStream 入力)
静的DebugTensorWatch
parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (com.google.protobuf.ByteString データ)
静的DebugTensorWatch
parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的DebugTensorWatch
parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)
静的
DebugTensorWatch.Builder
空所
writeTo (com.google.protobuf.CodedOutputStream 出力)

継承されたメソッド

定数

パブリック静的最終整数DEBUG_OPS_FIELD_NUMBER

定数値: 3

パブリック静的最終整数DEBUG_URLS_FIELD_NUMBER

定数値: 4

パブリック静的最終整数NODE_NAME_FIELD_NUMBER

定数値: 1

パブリック静的最終整数OUTPUT_SLOT_FIELD_NUMBER

定数値: 2

public static Final int TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

定数値: 5

パブリックメソッド

public booleanに等しい(オブジェクト obj)

public String getDebugOps (int インデックス)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public com.google.protobuf.ByteString getDebugOpsBytes (int インデックス)

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public int getDebugOpsCount ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public com.google.protobuf.ProtocolStringList getDebugOpsList ()

 Name(s) of the debugging op(s).
 One or more than one probes on a tensor.
 e.g., {"DebugIdentity", "DebugNanCount"}
 
repeated string debug_ops = 3;

public String getDebugUrls (int インデックス)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public com.google.protobuf.ByteString getDebugUrlsBytes (int インデックス)

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public int getDebugUrlsCount ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

public com.google.protobuf.ProtocolStringList getDebugUrlsList ()

 URL(s) for debug targets(s).
 Supported URL formats are:
   - file:///foo/tfdbg_dump: Writes out Event content to file
     /foo/tfdbg_dump.  Assumes all directories can be created if they don't
     already exist.
   - grpc://localhost:11011: Sends an RPC request to an EventListener
     service running at localhost:11011 with the event.
   - memcbk:///event_key: Routes tensors to clients using the
     callback registered with the DebugCallbackRegistry for event_key.
 Each debug op listed in debug_ops will publish its output tensor (debug
 signal) to all URLs in debug_urls.
 N.B. Session::Run() supports concurrent invocations of the same inputs
 (feed keys), outputs and target nodes. If such concurrent invocations
 are to be debugged, the callers of Session::Run() must use distinct
 debug_urls to make sure that the streamed or dumped events do not overlap
 among the invocations.
 TODO(cais): More visible documentation of this in g3docs.
 
repeated string debug_urls = 4;

パブリック静的DebugTensorWatch getDefaultInstance ()

public DebugTensorWatch getDefaultInstanceForType ()

public static Final com.google.protobuf.Descriptors.Descriptor getDescriptor ()

パブリック String getNodeName ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public com.google.protobuf.ByteString getNodeNameBytes ()

 Name of the node to watch.
 Use "*" for wildcard. But note: currently, regex is not supported in
 general.
 
string node_name = 1;

public int getOutputSlot ()

 Output slot to watch.
 The semantics of output_slot == -1 is that all outputs of the node
 will be watched (i.e., a wildcard).
 Other negative values of output_slot are invalid and will lead to
 errors currently.
 
int32 output_slot = 2;

公共getParserForType ()

public int getSerializedSize ()

public boolean getTolerateDebugOpCreationFailures ()

 Do not error out if debug op creation fails (e.g., due to dtype
 incompatibility). Instead, just log the failure.
 
bool tolerate_debug_op_creation_failures = 5;

public Final com.google.protobuf.UnknownFieldSet getUnknownFields ()

public int hashCode ()

パブリック最終ブール値isInitialized ()

public static DebugTensorWatch.Builder newBuilder ( DebugTensorWatchプロトタイプ)

public static DebugTensorWatch.Builder newBuilder ()

public DebugTensorWatch.Builder newBuilderForType ()

public static DebugTensorWatch parseDelimitedFrom (InputStream 入力)

投げる
IO例外

public static DebugTensorWatch parseDelimitedFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static DebugTensorWatch parseFrom (ByteBuffer データ)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (com.google.protobuf.CodedInputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static DebugTensorWatch parseFrom (ByteBuffer データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (com.google.protobuf.CodedInputStream 入力)

投げる
IO例外

public static DebugTensorWatch parseFrom (byte[] データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (com.google.protobuf.ByteString データ)

投げる
無効なプロトコルバッファ例外

public static DebugTensorWatch parseFrom (InputStream 入力、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
IO例外

public static DebugTensorWatch parseFrom (com.google.protobuf.ByteString データ、com.google.protobuf.ExtensionRegistryLite extensionRegistry)

投げる
無効なプロトコルバッファ例外

パブリック静的パーサー()

public DebugTensorWatch.Builder toBuilder ()

public void writeTo (com.google.protobuf.CodedOutputStream 出力)

投げる
IO例外