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

روش های عمومی

بولی
برابر است (object obj)
رشته
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
DebugTensorWatch
نهایی static 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 (ورودی جریان ورودی)
استاتیک 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 (بایت[] داده، 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

نهایی استاتیک عمومی TOLERATE_DEBUG_OP_CREATION_FAILURES_FIELD_NUMBER

ارزش ثابت: 5

روش های عمومی

بولین عمومی برابر است (Object Obj)

رشته عمومی 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 index)

 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;

عمومی 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;

عمومی 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;

رشته عمومی 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 index)

 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;

عمومی 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;

عمومی 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 ()

عمومی DebugTensorWatch getDefaultInstanceForType ()

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

رشته عمومی getNodeName ()

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

عمومی 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;

عمومی 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 ()

عمومی int getSerializedSize ()

بولین عمومی 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;

عمومی نهایی com.google.protobuf.UnknownFieldSet getUnknownFields ()

هش کد عمومی ()

بولین نهایی عمومی isInitialized ()

عمومی استاتیک DebugTensorWatch.Builder newBuilder (نمونه اولیه DebugTensorWatch )

عمومی استاتیک DebugTensorWatch.Builder newBuilder ()

عمومی DebugTensorWatch.Builder newBuilderForType ()

عمومی استاتیک DebugTensorWatch parseDelimitedFrom (ورودی جریان ورودی)

پرتاب می کند
IOException

عمومی استاتیک DebugTensorWatch parseDelimitedFrom (ورودی InputStream، com.google.protobuf.ExtensionRegistryLite extensionRegistry)

پرتاب می کند
IOException

عمومی استاتیک DebugTensorWatch parseFrom (داده ByteBuffer)

پرتاب می کند
InvalidProtocolBufferException

عمومی استاتیک DebugTensorWatch parseFrom (ورودی com.google.protobuf.CodedInputStream، com.google.protobuf.ExtensionRegistryLite extensionRegistry)

پرتاب می کند
IOException

عمومی استاتیک DebugTensorWatch parseFrom (داده های ByteBuffer، com.google.protobuf.ExtensionRegistryLite extensionRegistry)

پرتاب می کند
InvalidProtocolBufferException

عمومی استاتیک DebugTensorWatch parseFrom (ورودی com.google.protobuf.CodedInputStream)

پرتاب می کند
IOException

عمومی استاتیک DebugTensorWatch parseFrom (بایت[] داده، com.google.protobuf.ExtensionRegistryLite extensionRegistry)

پرتاب می کند
InvalidProtocolBufferException

عمومی استاتیک DebugTensorWatch parseFrom (داده های com.google.protobuf.ByteString)

پرتاب می کند
InvalidProtocolBufferException

عمومی استاتیک DebugTensorWatch parseFrom (ورودی InputStream، com.google.protobuf.ExtensionRegistryLite extensionRegistry)

پرتاب می کند
IOException

عمومی استاتیک DebugTensorWatch parseFrom (com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

پرتاب می کند
InvalidProtocolBufferException

استاتیک عمومی تجزیه کننده ()

عمومی DebugTensorWatch.Builder toBuilder ()

public void writeTo (خروجی com.google.protobuf.CodedOutputStream)

پرتاب می کند
IOException